class_5.test   [plain text]


FrT;@1|>>0|$15|HeaderDoc::Test%22|$4|CODE$7|COMMENT$7|CPPCODE$15|EXPECTED_RESULT$23|EXPECTED_RESULT_ALLDECS$7|FAILMSG$8|FILENAME$4|LANG$4|NAME$7|SUBLANG$4|TYPE$21561|class OSMetaClass : private OSMetaClassBase
{

private:
    // Can never be allocated must be created at compile time
    static void *operator new(size_t size);

    struct ExpansionData { };
    
/*! @var reserved Reserved for future use.  (Internal use only)  */
    ExpansionData *reserved;

/*! @var superClass Handle to the superclass' meta class. */
    const OSMetaClass *superClassLink;

/*! @var className OSSymbol of the class' name. */
    const OSSymbol *className;

/*! @var classSize How big is a single instancde of this class. */
    unsigned int classSize;

/*! @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. */
    mutable unsigned int instanceCount;

/*! @function OSMetaClass
    @abstract Private the default constructor */
    OSMetaClass();

    // Called by postModLoad
/*! @function logError
    @abstract Given an error code log an error string using printf */
    static void logError(OSReturn result);

public:

/*! @function getMetaClassWithName
    @abstract Lookup a meta-class in the runtime type information system
    @param name Name of the desired class's meta-class. 
    @result pointer to a meta-class object if found, 0 otherwise. */

    static const OSMetaClass *getMetaClassWithName(const OSSymbol *name);

protected:
/*! @function retain
    @abstract Implement abstract but should no dynamic allocation is allowed */
    virtual void retain() const;

/*! @function release
    @abstract Implement abstract but should no dynamic allocation is allowed */
    virtual void release() const;

/*! @function release
    @abstract Implement abstract but should no dynamic allocation is allowed 
    @param when ignored. */
    virtual void release(int when) const;

/*! @function taggedRetain
    @abstract Retain a tagged reference in this object.
*/
    virtual void taggedRetain(const void *tag = 0) const;

/*! @function release
    @abstract Release a tagged reference to this object
*/
    virtual void taggedRelease(const void *tag = 0) const;

/*! @function release
    @abstract Release a tagged reference to this object
*/
    virtual void taggedRelease(const void *tag, const int when) const;

/*! @function getRetainCount
    @abstract Implement abstract but should no dynamic allocation is allowed */
    virtual int getRetainCount() const;

    virtual const OSMetaClass * getMetaClass() const;

/*! @function OSMetaClass
    @abstract Constructor for OSMetaClass objects
    @discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
    @param inClassName cString of the name of the class this meta-class represents.
    @param inSuperClassName cString of the name of the super class.
    @param inClassSize sizeof the class. */
    OSMetaClass(const char *inClassName,
		const OSMetaClass *inSuperClass,
		unsigned int inClassSize);

/*! @function ~OSMetaClass
    @abstract Destructor for OSMetaClass objects
    @discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. */
    virtual ~OSMetaClass();

    // Needs to be overriden as NULL as all OSMetaClass objects are allocated
    // statically at compile time, don't accidently try to free them.
    void operator delete(void *, size_t) { };

public:
    static const OSMetaClass * const metaClass;

/*! @function preModLoad
    @abstract Prepare the runtime type system for the load of a module.
    @discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
    @param kmodName globally unique cString name of the kernel module being loaded. 
    @result If success full return a handle to be used in later calls 0 otherwise. */
    static void *preModLoad(const char *kmodName);

/*! @function checkModLoad
    @abstract Check if the current load attempt is still OK.
    @param loadHandle Handle returned when a successful call to preModLoad is made.
    @result true if no error's are outstanding and the system is primed to recieve more objects. */
    static bool checkModLoad(void *loadHandle);

/*! @function postModLoad
    @abstract Finish postprocessing on a kernel module's meta-classes.
    @discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
    @param loadHandle Handle returned when a successful call to preModLoad is made.
    @result Error code of the first error encountered. */
    static OSReturn postModLoad(void *loadHandle);

/*! @function modHasInstance
    @abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
    @discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
    @param kmodName cString of the kernel module name.
    @result true if there are any current instances of any class in the module.
*/
    static bool modHasInstance(const char *kmodName);

/*! @function reportModInstances
    @abstract Log any object that has instances in a module.
    @discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
    @param kmodName cString of the kernel module name. */
    static void reportModInstances(const char *kmodName);

/*! @function considerUnloads
    @abstract Schedule module unloading.
    @discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. */

    static void considerUnloads();

/*! @function allocClassWithName
    @abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
    @param name Name of the desired class. 
    @result pointer to an new object, 0 if not found or so memory. */
    static OSObject *allocClassWithName(const OSSymbol *name);

/*! @function allocClassWithName
    @abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
    @param name Name of the desired class. 
    @result pointer to an new object, 0 if not found or so memory. */
    static OSObject *allocClassWithName(const OSString *name);

/*! @function allocClassWithName
    @abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
    @param name Name of the desired class. 
    @result pointer to an new object, 0 if not found or so memory. */
    static OSObject *allocClassWithName(const char *name);

/*! @function checkMetaCastWithName
    @abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
    @param name Name of the desired class or super class. 
    @param in object to be introspected. 
    @result in parameter if cast valid, 0 otherwise. */
    static OSMetaClassBase *
	checkMetaCastWithName(const OSSymbol *name, const OSMetaClassBase *in);

/*! @function checkMetaCastWithName
    @abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
    @param name Name of the desired class or super class.
    @param in object to be introspected.
    @result in parameter if cast valid, 0 otherwise. */
    static OSMetaClassBase *
	checkMetaCastWithName(const OSString *name, const OSMetaClassBase *in);

/*! @function checkMetaCastWithName
    @abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
    @param name Name of the desired class or super class.
    @param in object to be introspected.
    @result in parameter if cast valid, 0 otherwise. */
    static OSMetaClassBase *
	checkMetaCastWithName(const char *name, const OSMetaClassBase *in);


/*! @function instanceConstructed
    @abstract Counts the instances of the class behind this metaclass.
    @discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class */
    void instanceConstructed() const;

/*! @function instanceDestructed
    @abstract Removes one instance of the class behind this metaclass.
    @discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. */
    void instanceDestructed() const;


/*! @function checkMetaCast
    @abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
    @param check Pointer of object to introspect.
    @result check parameter if cast valid, 0 otherwise. */
    OSMetaClassBase *checkMetaCast(const OSMetaClassBase *check) const;


/*! @function getInstanceCount
    @abstract How many instances of the class have been created.
    @result Count of the number of instances. */
    unsigned int getInstanceCount() const;


/*! @function getSuperClass
    @abstract 'Get'ter for the super class.
    @result Pointer to superclass, chain ends with 0 for OSObject. */
    const OSMetaClass *getSuperClass() const;
	
/*! @function getKmodName
    @abstract 'Get'ter for the name of the kmod.
    @result OSSymbol representing the kmod name. */
	const OSSymbol *getKmodName() const;

/*! @function getClassName
    @abstract 'Get'ter for class name.
    @result cString of the class name. */
    const char *getClassName() const;

/*! @function getClassSize
    @abstract 'Get'ter for sizeof(class).
    @result sizeof of class that this OSMetaClass instance represents. */
    unsigned int getClassSize() const;

/*! @function alloc
    @abstract Allocate an instance of the class that this OSMetaClass instance represents.
    @discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
    @result Pointer to a new object with a retain count of 1. */
    virtual OSObject *alloc() const = 0;

/*! @function OSDeclareCommonStructors
    @abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
    @param className Name of class. NO QUOTES. */
#define OSDeclareCommonStructors(className)				\
    private:								\
	static const OSMetaClass * const superClass;			\
    public:								\
	static const OSMetaClass * const metaClass;			\
        static class MetaClass : public OSMetaClass {			\
        public:								\
            MetaClass();						\
            virtual OSObject *alloc() const;				\
        } gMetaClass;							\
        friend class className ::MetaClass;				\
        virtual const OSMetaClass * getMetaClass() const;		\
    protected:								\
	className (const OSMetaClass *);				\
	virtual ~ className ()


/*! @function OSDeclareDefaultStructors
    @abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
    @discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
    @param className Name of class. NO QUOTES. */
#define OSDeclareDefaultStructors(className)				\
	OSDeclareCommonStructors(className);				\
    public:								\
	className ();							\
    protected:


/*! @function OSDeclareAbstractStructors
    @abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
    @discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
    @param className Name of class. NO QUOTES. */
#define OSDeclareAbstractStructors(className)				\
	OSDeclareCommonStructors(className);				\
    private:								\
	className (); /* Make primary constructor private in abstract */ \
    protected:

/*! @function OSDefineMetaClassWithInit
    @abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
    @param className Name of class. NO QUOTES and NO MACROS.
    @param superClassName Name of super class. NO QUOTES and NO MACROS.
    @param init Name of a function to call after the OSMetaClass is constructed. */
#define OSDefineMetaClassWithInit(className, superClassName, init)	\
    /* Class global data */						\
    className ::MetaClass className ::gMetaClass;			\
    const OSMetaClass * const className ::metaClass = 			\
        & className ::gMetaClass;					\
    const OSMetaClass * const className ::superClass = 			\
        & superClassName ::gMetaClass;					\
    /* Class member functions */					\
    className :: className(const OSMetaClass *meta)			\
	    : superClassName (meta) { }					\
    className ::~ className() { }					\
    const OSMetaClass * className ::getMetaClass() const		\
        { return &gMetaClass; }						\
    /* The ::MetaClass constructor */					\
    className ::MetaClass::MetaClass()					\
        : OSMetaClass(#className, className::superClass, sizeof(className)) \
        { init; }

/*! @function OSDefineAbstractStructors
    @abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
    @param className Name of class. NO QUOTES and NO MACROS.
    @param superClassName Name of super class. NO QUOTES and NO MACROS. */
#define OSDefineAbstractStructors(className, superClassName)		\
    OSObject * className ::MetaClass::alloc() const { return 0; }

/*! @function OSDefineDefaultStructors
    @abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
    @param className Name of class. NO QUOTES and NO MACROS.
    @param superClassName Name of super class. NO QUOTES and NO MACROS. */
#define OSDefineDefaultStructors(className, superClassName)		\
    OSObject * className ::MetaClass::alloc() const			\
	{ return new className; }					\
    className :: className () : superClassName (&gMetaClass)		\
	{ gMetaClass.instanceConstructed(); }


/*! @function OSDefineMetaClassAndAbstractStructorsWithInit
    @abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
    @discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
    @param className Name of class. NO QUOTES and NO MACROS.
    @param superClassName Name of super class. NO QUOTES and NO MACROS.
    @param init Name of a function to call after the OSMetaClass is constructed. */
#define OSDefineMetaClassAndAbstractStructorsWithInit(className, superClassName, init) \
    OSDefineMetaClassWithInit(className, superClassName, init)		\
    OSDefineAbstractStructors(className, superClassName)

/*! @function OSDefineMetaClassAndStructorsWithInit
    @abstract See OSDefineMetaClassAndStructors
    @discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
    @param className Name of class. NO QUOTES and NO MACROS.
    @param superClassName Name of super class. NO QUOTES and NO MACROS.
    @param init Name of a function to call after the OSMetaClass is constructed. */
#define OSDefineMetaClassAndStructorsWithInit(className, superClassName, init) \
    OSDefineMetaClassWithInit(className, superClassName, init)		\
    OSDefineDefaultStructors(className, superClassName)

/* Helpers */
/*! @function OSDefineMetaClass
    @abstract Define an OSMetaClass instance, used for backward compatiblility only.
    @param className Name of class. NO QUOTES and NO MACROS.
    @param superClassName Name of super class. NO QUOTES and NO MACROS. */
#define OSDefineMetaClass(className, superClassName)			\
    OSDefineMetaClassWithInit(className, superClassName, )

/*! @function OSDefineMetaClassAndStructors
    @abstract Define an OSMetaClass subclass and the runtime system routines.
    @discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
    @param className Name of class. NO QUOTES and NO MACROS.
    @param superClassName Name of super class. NO QUOTES and NO MACROS. */
#define OSDefineMetaClassAndStructors(className, superClassName)	\
    OSDefineMetaClassAndStructorsWithInit(className, superClassName, )

/*! @function OSDefineMetaClassAndAbstractStructors
    @abstract Define an OSMetaClass subclass and the runtime system routines.
    @discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
    @param className Name of class. NO QUOTES and NO MACROS.
    @param superClassName Name of super class. NO QUOTES and NO MACROS. */
#define OSDefineMetaClassAndAbstractStructors(className, superClassName) \
    OSDefineMetaClassAndAbstractStructorsWithInit (className, superClassName, )

    // Dynamic vtable patchup support routines and types
    void reservedCalled(int ind) const;

#define OSMetaClassDeclareReservedUnused(classname, index)		\
    private:								\
    APPLE_KEXT_PAD_METHOD void _RESERVED ## classname ## index ()

#define OSMetaClassDeclareReservedUsed(classname, index)

#define OSMetaClassDefineReservedUnused(classname, index)		\
void classname ::_RESERVED ## classname ## index () 			\
    { APPLE_KEXT_PAD_IMPL(index); }

#define OSMetaClassDefineReservedUsed(classname, index)

    // IOKit debug internal routines.
    static void printInstanceCounts();
    static void serializeClassDictionary(OSDictionary *dict);

private:
    // Obsolete APIs
    static OSDictionary *getClassDictionary();
    virtual bool serialize(OSSerialize *s) const;

    // Virtual Padding functions for MetaClass's
    OSMetaClassDeclareReservedUnused(OSMetaClass, 0);
    OSMetaClassDeclareReservedUnused(OSMetaClass, 1);
    OSMetaClassDeclareReservedUnused(OSMetaClass, 2);
    OSMetaClassDeclareReservedUnused(OSMetaClass, 3);
    OSMetaClassDeclareReservedUnused(OSMetaClass, 4);
    OSMetaClassDeclareReservedUnused(OSMetaClass, 5);
    OSMetaClassDeclareReservedUnused(OSMetaClass, 6);
    OSMetaClassDeclareReservedUnused(OSMetaClass, 7);
};
$175|/*!
    @class OSMetaClass : OSMetaClassBase
    @abstract An instance of a OSMetaClass represents one class then the kernel's runtime type information system is aware of.
*/
$0|$3924209|-=: TOP LEVEL COMMENT PARSE VALUES :=-
inHeader: 0
inClass: 1
inInterface: 0
inCPPHeader: 0
inOCCHeader: 0
inPerlScript: 0
inShellScript: 0
inPHPScript: 0
inJavaSource: 0
inFunctionGroup: 0
inGroup: 0
inFunction: 0
inPDefine: 0
inTypedef: 0
inUnion: 0
inStruct: 0
inConstant: 0
inVar: 0
inEnum: 0
inMethod: 0
inAvailabilityMacro: 0
inUnknown: 0
classType: unknown
inputCounter: 0
blockOffset: 0
fullpath: /test_suite_bogus_path/class_5.test
-=: BLOCKPARSE PARSER STATE KEYS :=-
$parserState->{FULLPATH} => /test_suite_bogus_path/class_5.test
$parserState->{ISFORWARDDECLARATION} => 0
$parserState->{NEXTTOKENNOCPP} => 0
$parserState->{availability} => 
$parserState->{backslashcount} => 0
$parserState->{basetype} => 
$parserState->{bracePending} => 0
$parserState->{callbackIsTypedef} => 0
$parserState->{callbackName} => 
$parserState->{callbackNamePending} => -1
$parserState->{categoryClass} => 
$parserState->{classNameFound} => 1
$parserState->{classtype} => class
$parserState->{forceClassDone} => 1
$parserState->{forceClassName} => OSMetaClass
$parserState->{forceClassSuper} =>  private OSMetaClassBase 
$parserState->{freezeStack} => ARRAY(OBJID)
$parserState->{freezereturn} => 1
$parserState->{frozensodname} => 
$parserState->{functionReturnsCallback} => 0
$parserState->{hollow} => HeaderDoc::ParseTree=HASH(OBJID)
$parserState->{inBrackets} => 0
$parserState->{inChar} => 0
$parserState->{inClass} => 1
$parserState->{inComment} => 0
$parserState->{inInlineComment} => 0
$parserState->{inMacro} => 0
$parserState->{inMacroLine} => 0
$parserState->{inOperator} => 0
$parserState->{inPrivateParamTypes} => 0
$parserState->{inString} => 0
$parserState->{inTemplate} => 0
$parserState->{initbsCount} => 0
$parserState->{inputCounter} => 268
$parserState->{kr_c_function} => 0
$parserState->{kr_c_name} => 
$parserState->{lang} => C
$parserState->{lastTreeNode} => HeaderDoc::ParseTree=HASH(OBJID)
$parserState->{lastsymbol} => ;
$parserState->{macroNoTrunc} => 1
$parserState->{name} => 
$parserState->{namePending} => 0
$parserState->{noInsert} => 0
$parserState->{occmethod} => 0
$parserState->{occmethodname} => 
$parserState->{occparmlabelfound} => 4
$parserState->{onlyComments} => 0
$parserState->{parsedParamAtBrace} => ARRAY(OBJID)
$parserState->{parsedParamList} => ARRAY(OBJID)
$parserState->{parsedParamParse} => 1
$parserState->{parsedParamStateAtBrace} => ARRAY(OBJID)
$parserState->{posstypes} => 
$parserState->{posstypesPending} => 0
$parserState->{pplStack} => ARRAY(OBJID)
$parserState->{preEqualsSymbol} => 
$parserState->{preTemplateSymbol} => 
$parserState->{preclasssodtype} => class
$parserState->{prekeywordsodname} => 
$parserState->{prekeywordsodtype} => 
$parserState->{returntype} => class OSMetaClass : private OSMetaClassBase  
$parserState->{seenBraces} => 0
$parserState->{seenMacroPart} => 0
$parserState->{seenTilde} => 0
$parserState->{simpleTDcontents} => 
$parserState->{simpleTypedef} => 0
$parserState->{sodclass} => class
$parserState->{sodname} => OSMetaClassBase
$parserState->{sodtype} =>  private
$parserState->{sodtypeclasstoken} => class
$parserState->{stackFrozen} => 0
$parserState->{startOfDec} => 1
$parserState->{storeDec} => 
$parserState->{sublang} => C
$parserState->{temponlyComments} => 0
$parserState->{treePopTwo} => 0
$parserState->{value} => 
$parserState->{valuepending} => 0
-=: BLOCKPARSE RETURN VALUES :=-
newcount: 268
typelist: class
namelist: OSMetaClass
posstypes:   OSMetaClassBase 
value: 
returntype: private
pridec: 
simpleTDcontents: 
bpavail: 
blockOffset: 124
conformsToList: 
functionContents: 
extendsClass: 
implementsClass: 
-=: LIST OF PARSED PARAMETERS :=-
-=: DUMP OF PARSE TREE :=-
+---class
+--- 
+---OSMetaClass
+--- 
+---:
+--- 
+---private
+--- 
+---OSMetaClassBase
+---[ NEWLINE ]
+---{
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---private
|   +---:
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Can never be allocated must be created at compile time
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---operator
|   +--- 
|   +---new
|   +---(
|   |   +---size_t
|   |   +--- 
|   |   +---size
|   |   +---)
|   +---;
|   +--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-struct (HAS STATE)
|   +--- 
|   +---ExpansionData
|   +--- 
|   +---{
|   |   +--- 
|   |   +---}
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var reserved Reserved for future use.  (Internal use only)  
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-ExpansionData (HAS STATE)
|   +--- 
|   +---*
|   +---reserved
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var superClass Handle to the superclass' meta class. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---superClassLink
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var className OSSymbol of the class' name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---className
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var classSize How big is a single instancde of this class. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-unsigned (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---classSize
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-mutable (HAS STATE)
|   +--- 
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---instanceCount
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSMetaClass
|   |   +---
@abstract Private the default constructor 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-OSMetaClass (HAS STATE)
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Called by postModLoad
|   |   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function logError
|   |   +---
@abstract Given an error code log an error string using printf 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---logError
|   +---(
|   |   +---OSReturn
|   |   +--- 
|   |   +---result
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---public
|   +---:
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getMetaClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system
|   |   +---
@param name Name of the desired class's meta-class. 
|   |   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---getMetaClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSSymbol
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---protected
|   +---:
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function retain
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---retain
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---release
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---
@param when ignored. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---release
|   +---(
|   |   +---int
|   |   +--- 
|   |   +---when
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function taggedRetain
|   |   +---
@abstract Retain a tagged reference in this object.
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---taggedRetain
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---tag
|   |   +--- 
|   |   +---=
|   |   +--- 
|   |   +---0
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Release a tagged reference to this object
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---taggedRelease
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---tag
|   |   +--- 
|   |   +---=
|   |   +--- 
|   |   +---0
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Release a tagged reference to this object
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---taggedRelease
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---tag
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---int
|   |   +--- 
|   |   +---when
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getRetainCount
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---getRetainCount
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSMetaClass
|   |   +---
@abstract Constructor for OSMetaClass objects
|   |   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   |   +---
@param inClassName cString of the name of the class this meta-class represents.
|   |   +---
@param inSuperClassName cString of the name of the super class.
|   |   +---
@param inClassSize sizeof the class. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-OSMetaClass (HAS STATE)
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---inClassName
|   |   +---,
|   |   +---[ NEWLINE ]
|   |   +---                
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---inSuperClass
|   |   +---,
|   |   +---[ NEWLINE ]
|   |   +---                
|   |   +---unsigned
|   |   +--- 
|   |   +---int
|   |   +--- 
|   |   +---inClassSize
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function ~OSMetaClass
|   |   +---
@abstract Destructor for OSMetaClass objects
|   |   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---~
|   +---OSMetaClass
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   |   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---statically at compile time, don't accidently try to free them.
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---operator
|   +--- 
|   +---delete
|   +---(
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---,
|   |   +--- 
|   |   +---size_t
|   |   +---)
|   +--- 
|   +---;
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---public
|   +---:
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function preModLoad
|   |   +---
@abstract Prepare the runtime type system for the load of a module.
|   |   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   |   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   |   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---preModLoad
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---kmodName
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkModLoad
|   |   +---
@abstract Check if the current load attempt is still OK.
|   |   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   |   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---bool
|   +--- 
|   +---checkModLoad
|   +---(
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---loadHandle
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function postModLoad
|   |   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   |   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   |   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   |   +---
@result Error code of the first error encountered. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSReturn
|   +--- 
|   +---postModLoad
|   +---(
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---loadHandle
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function modHasInstance
|   |   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   |   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   |   +---
@param kmodName cString of the kernel module name.
|   |   +---
@result true if there are any current instances of any class in the module.
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---bool
|   +--- 
|   +---modHasInstance
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---kmodName
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function reportModInstances
|   |   +---
@abstract Log any object that has instances in a module.
|   |   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   |   +---
@param kmodName cString of the kernel module name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---reportModInstances
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---kmodName
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function considerUnloads
|   |   +---
@abstract Schedule module unloading.
|   |   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---considerUnloads
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function allocClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   |   +---
@param name Name of the desired class. 
|   |   +---
@result pointer to an new object, 0 if not found or so memory. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---allocClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSSymbol
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function allocClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   |   +---
@param name Name of the desired class. 
|   |   +---
@result pointer to an new object, 0 if not found or so memory. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---allocClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSString
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function allocClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   |   +---
@param name Name of the desired class. 
|   |   +---
@result pointer to an new object, 0 if not found or so memory. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---allocClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCastWithName
|   |   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   |   +---
@param name Name of the desired class or super class. 
|   |   +---
@param in object to be introspected. 
|   |   +---
@result in parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---[ NEWLINE ]
|   +---        
|   +---checkMetaCastWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSSymbol
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---in
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCastWithName
|   |   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   |   +---
@param name Name of the desired class or super class.
|   |   +---
@param in object to be introspected.
|   |   +---
@result in parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---[ NEWLINE ]
|   +---        
|   +---checkMetaCastWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSString
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---in
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCastWithName
|   |   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   |   +---
@param name Name of the desired class or super class.
|   |   +---
@param in object to be introspected.
|   |   +---
@result in parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---[ NEWLINE ]
|   +---        
|   +---checkMetaCastWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---in
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function instanceConstructed
|   |   +---
@abstract Counts the instances of the class behind this metaclass.
|   |   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---instanceConstructed
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function instanceDestructed
|   |   +---
@abstract Removes one instance of the class behind this metaclass.
|   |   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---instanceDestructed
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCast
|   |   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   |   +---
@param check Pointer of object to introspect.
|   |   +---
@result check parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-OSMetaClassBase (HAS STATE)
|   +--- 
|   +---*
|   +---checkMetaCast
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---check
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getInstanceCount
|   |   +---
@abstract How many instances of the class have been created.
|   |   +---
@result Count of the number of instances. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-unsigned (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---getInstanceCount
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getSuperClass
|   |   +---
@abstract 'Get'ter for the super class.
|   |   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---getSuperClass
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getKmodName
|   |   +---
@abstract 'Get'ter for the name of the kmod.
|   |   +---
@result OSSymbol representing the kmod name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---        
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---getKmodName
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getClassName
|   |   +---
@abstract 'Get'ter for class name.
|   |   +---
@result cString of the class name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---getClassName
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getClassSize
|   |   +---
@abstract 'Get'ter for sizeof(class).
|   |   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-unsigned (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---getClassSize
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function alloc
|   |   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   |   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   |   +---
@result Pointer to a new object with a retain count of 1. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDeclareCommonStructors
|   |   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDeclareCommonStructors
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---private
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---superClass
|   |   +---;
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---metaClass
|   |   +---;
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---MetaClass
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---public
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---{
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---public
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---virtual
|   |   +--- 
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---}
|   |   +--- 
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---friend
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---)
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDeclareDefaultStructors
|   |   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   |   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   |   +---
@param className Name of class. NO QUOTES. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDeclareDefaultStructors
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---         
|   |   +---private
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---superClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---metaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---MetaClass
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---public
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---{
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---virtual
|   |   +--- 
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---}
|   |   +--- 
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---friend
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---)
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDeclareAbstractStructors
|   |   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   |   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   |   +---
@param className Name of class. NO QUOTES. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDeclareAbstractStructors
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---         
|   |   +---private
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---superClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---metaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---MetaClass
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---public
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---{
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---virtual
|   |   +--- 
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---}
|   |   +--- 
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---friend
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---)
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---private
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Make primary constructor private in abstract 
|   |   |   +---*/
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassWithInit
|   |   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   |   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassWithInit
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---,
|   |   +--- 
|   |   +---init
|   |   +---)
|   |   +---        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +--- 
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---#
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---init
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineAbstractStructors
|   |   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineAbstractStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---0
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineDefaultStructors
|   |   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineDefaultStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---new
|   |   +--- 
|   |   +---className
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---&
|   |   +---gMetaClass
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---gMetaClass
|   |   +---.
|   |   +---instanceConstructed
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   |   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   |   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---,
|   |   +--- 
|   |   +---init
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---  
|   |   +---init
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndStructorsWithInit
|   |   +---
@abstract See OSDefineMetaClassAndStructors
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   |   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndStructorsWithInit
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---,
|   |   +--- 
|   |   +---init
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---  
|   |   +---init
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---new
|   |   +--- 
|   |   +---className
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---&
|   |   +---gMetaClass
|   |   +---)
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---gMetaClass
|   |   +---.
|   |   +---instanceConstructed
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +--- 
|   |   +---Helpers 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClass
|   |   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClass
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---  
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndStructors
|   |   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---   
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---   
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---new
|   |   +--- 
|   |   +---className
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---:
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---&
|   |   +---gMetaClass
|   |   +---)
|   |   +---                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---gMetaClass
|   |   +---.
|   |   +---instanceConstructed
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndAbstractStructors
|   |   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndAbstractStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---   
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---   
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Dynamic vtable patchup support routines and types
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---reservedCalled
|   +---(
|   |   +---int
|   |   +--- 
|   |   +---ind
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDeclareReservedUnused
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---private
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---APPLE_KEXT_PAD_METHOD
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---_RESERVED
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---classname
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---index
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDeclareReservedUsed
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDefineReservedUnused
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---void
|   |   +--- 
|   |   +---classname
|   |   +--- 
|   |   +---::
|   |   +---_RESERVED
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---classname
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---index
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---{
|   |   +--- 
|   |   +---APPLE_KEXT_PAD_IMPL
|   |   +---(
|   |   +---index
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDefineReservedUsed
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---IOKit debug internal routines.
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---printInstanceCounts
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---serializeClassDictionary
|   +---(
|   |   +---OSDictionary
|   |   +--- 
|   |   +---*
|   |   +---dict
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---private
|   +---:
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Obsolete APIs
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSDictionary
|   +--- 
|   +---*
|   +---getClassDictionary
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---bool
|   +--- 
|   +---serialize
|   +---(
|   |   +---OSSerialize
|   |   +--- 
|   |   +---*
|   |   +---s
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Virtual Padding functions for MetaClass's
|   |   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---0
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---1
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---2
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---3
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---4
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---5
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---6
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---7
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---}
+---;
+--- 
+---[ NEWLINE ]
-=: COMPUTED VALUE :=-
SUCCESS: 0
VALUE: 0
-=: CPP CHANGES :=-
$CPP_HASH{OSDeclareAbstractStructors} =>                                
         private:                                                                 
        static const OSMetaClass * const superClass;                         
    public:                                                                 
        static const OSMetaClass * const metaClass;                         
        static class MetaClass : public OSMetaClass {                         
        public:                                                                 
            MetaClass();                                                 
            virtual OSObject *alloc() const;                                 
        } gMetaClass;                                                         
        friend class className ::MetaClass;                                 
        virtual const OSMetaClass * getMetaClass() const;                 
    protected:                                                                 
        className (const OSMetaClass *);                                 
        virtual ~ className ();                                
    private:                                                                
        className (); /* Make primary constructor private in abstract */ 
    protected:
$CPP_HASH{OSDeclareCommonStructors} =>                                
    private:                                                                
        static const OSMetaClass * const superClass;                        
    public:                                                                
        static const OSMetaClass * const metaClass;                        
        static class MetaClass : public OSMetaClass {                        
        public:                                                                
            MetaClass();                                                
            virtual OSObject *alloc() const;                                
        } gMetaClass;                                                        
        friend class className ::MetaClass;                                
        virtual const OSMetaClass * getMetaClass() const;                
    protected:                                                                
        className (const OSMetaClass *);                                
        virtual ~ className ()
$CPP_HASH{OSDeclareDefaultStructors} =>                                
         private:                                                                 
        static const OSMetaClass * const superClass;                         
    public:                                                                 
        static const OSMetaClass * const metaClass;                         
        static class MetaClass : public OSMetaClass {                         
        public:                                                                 
            MetaClass();                                                 
            virtual OSObject *alloc() const;                                 
        } gMetaClass;                                                         
        friend class className ::MetaClass;                                 
        virtual const OSMetaClass * getMetaClass() const;                 
    protected:                                                                 
        className (const OSMetaClass *);                                 
        virtual ~ className ();                                
    public:                                                                
        className ();                                                        
    protected:
$CPP_HASH{OSDefineAbstractStructors} =>                
    OSObject * className ::MetaClass::alloc() const { return ; }
$CPP_HASH{OSDefineDefaultStructors} =>                
    OSObject * className ::MetaClass::alloc() const                        
        { return new className; }                                        
    className :: className () : superClassName (&gMetaClass)                
        { gMetaClass.instanceConstructed(); }
$CPP_HASH{OSDefineMetaClass} =>                        
     /* Class global data */                                                 
    className ::MetaClass className ::gMetaClass;                         
    const OSMetaClass * const className ::metaClass =                          
        & className ::gMetaClass;                                         
    const OSMetaClass * const className ::superClass =                          
        &  superClassName ::gMetaClass;                                         
    /* Class member functions */                                         
    className :: className(const OSMetaClass *meta)                         
            :  superClassName (meta) { }                                         
    className ::~ className() { }                                         
    const OSMetaClass * className ::getMetaClass() const                 
        { return &gMetaClass; }                                                 
    /* The ::MetaClass constructor */                                         
    className ::MetaClass::MetaClass()                                         
        : OSMetaClass("className", className::superClass, sizeof(className))  
        {  ; }
$CPP_HASH{OSDefineMetaClassAndAbstractStructors} => 
     /* Class global data */                                                  
    className ::MetaClass className ::gMetaClass;                          
    const OSMetaClass * const className ::metaClass =                           
        & className ::gMetaClass;                                          
    const OSMetaClass * const className ::superClass =                           
        &   superClassName ::gMetaClass;                                          
    /* Class member functions */                                          
    className :: className(const OSMetaClass *meta)                          
            :   superClassName (meta) { }                                          
    className ::~ className() { }                                          
    const OSMetaClass * className ::getMetaClass() const                  
        { return &gMetaClass; }                                                  
    /* The ::MetaClass constructor */                                          
    className ::MetaClass::MetaClass()                                          
        : OSMetaClass("className", className::superClass, sizeof(className))   
        {   ; }                 
     OSObject * className ::MetaClass::alloc() const { return ; }
$CPP_HASH{OSDefineMetaClassAndAbstractStructorsWithInit} => 
     /* Class global data */                                                 
    className ::MetaClass className ::gMetaClass;                         
    const OSMetaClass * const className ::metaClass =                          
        & className ::gMetaClass;                                         
    const OSMetaClass * const className ::superClass =                          
        &  superClassName ::gMetaClass;                                         
    /* Class member functions */                                         
    className :: className(const OSMetaClass *meta)                         
            :  superClassName (meta) { }                                         
    className ::~ className() { }                                         
    const OSMetaClass * className ::getMetaClass() const                 
        { return &gMetaClass; }                                                 
    /* The ::MetaClass constructor */                                         
    className ::MetaClass::MetaClass()                                         
        : OSMetaClass("className", className::superClass, sizeof(className))  
        {  init; }                
     OSObject * className ::MetaClass::alloc() const { return ; }
$CPP_HASH{OSDefineMetaClassAndStructors} =>        
     /* Class global data */                                                  
    className ::MetaClass className ::gMetaClass;                          
    const OSMetaClass * const className ::metaClass =                           
        & className ::gMetaClass;                                          
    const OSMetaClass * const className ::superClass =                           
        &   superClassName ::gMetaClass;                                          
    /* Class member functions */                                          
    className :: className(const OSMetaClass *meta)                          
            :   superClassName (meta) { }                                          
    className ::~ className() { }                                          
    const OSMetaClass * className ::getMetaClass() const                  
        { return &gMetaClass; }                                                  
    /* The ::MetaClass constructor */                                          
    className ::MetaClass::MetaClass()                                          
        : OSMetaClass("className", className::superClass, sizeof(className))   
        {   ; }                 
     OSObject * className ::MetaClass::alloc() const                          
        { return new className; }                                          
    className :: className () :   superClassName (&gMetaClass)                  
        { gMetaClass.instanceConstructed(); }
$CPP_HASH{OSDefineMetaClassAndStructorsWithInit} => 
     /* Class global data */                                                 
    className ::MetaClass className ::gMetaClass;                         
    const OSMetaClass * const className ::metaClass =                          
        & className ::gMetaClass;                                         
    const OSMetaClass * const className ::superClass =                          
        &  superClassName ::gMetaClass;                                         
    /* Class member functions */                                         
    className :: className(const OSMetaClass *meta)                         
            :  superClassName (meta) { }                                         
    className ::~ className() { }                                         
    const OSMetaClass * className ::getMetaClass() const                 
        { return &gMetaClass; }                                                 
    /* The ::MetaClass constructor */                                         
    className ::MetaClass::MetaClass()                                         
        : OSMetaClass("className", className::superClass, sizeof(className))  
        {  init; }                
     OSObject * className ::MetaClass::alloc() const                         
        { return new className; }                                         
    className :: className () :  superClassName (&gMetaClass)                 
        { gMetaClass.instanceConstructed(); }
$CPP_HASH{OSDefineMetaClassWithInit} =>        
    /* Class global data */                                                
    className ::MetaClass className ::gMetaClass;                        
    const OSMetaClass * const className ::metaClass =                         
        & className ::gMetaClass;                                        
    const OSMetaClass * const className ::superClass =                         
        & superClassName ::gMetaClass;                                        
    /* Class member functions */                                        
    className :: className(const OSMetaClass *meta)                        
            : superClassName (meta) { }                                        
    className ::~ className() { }                                        
    const OSMetaClass * className ::getMetaClass() const                
        { return &gMetaClass; }                                                
    /* The ::MetaClass constructor */                                        
    className ::MetaClass::MetaClass()                                        
        : OSMetaClass(#className, className::superClass, sizeof(className)) 
        { init; }
$CPP_HASH{OSMetaClassDeclareReservedUnused} =>                
    private:                                                                
    APPLE_KEXT_PAD_METHOD void _RESERVED ## classname ## index ()
$CPP_HASH{OSMetaClassDeclareReservedUsed} => 
$CPP_HASH{OSMetaClassDefineReservedUnused} =>                
void classname ::_RESERVED ## classname ## index ()                         
    { APPLE_KEXT_PAD_IMPL(index); }
$CPP_HASH{OSMetaClassDefineReservedUsed} => 
$CPP_ARG_HASH{OSDeclareAbstractStructors} => className
$CPP_ARG_HASH{OSDeclareCommonStructors} => className
$CPP_ARG_HASH{OSDeclareDefaultStructors} => className
$CPP_ARG_HASH{OSDefineAbstractStructors} => className, superClassName
$CPP_ARG_HASH{OSDefineDefaultStructors} => className, superClassName
$CPP_ARG_HASH{OSDefineMetaClass} => className, superClassName
$CPP_ARG_HASH{OSDefineMetaClassAndAbstractStructors} => className, superClassName
$CPP_ARG_HASH{OSDefineMetaClassAndAbstractStructorsWithInit} => className, superClassName, init
$CPP_ARG_HASH{OSDefineMetaClassAndStructors} => className, superClassName
$CPP_ARG_HASH{OSDefineMetaClassAndStructorsWithInit} => className, superClassName, init
$CPP_ARG_HASH{OSDefineMetaClassWithInit} => className, superClassName, init
$CPP_ARG_HASH{OSMetaClassDeclareReservedUnused} => classname, index
$CPP_ARG_HASH{OSMetaClassDeclareReservedUsed} => classname, index
$CPP_ARG_HASH{OSMetaClassDefineReservedUnused} => classname, index
$CPP_ARG_HASH{OSMetaClassDefineReservedUsed} => classname, index
-=: FOUND MATCH :=-
1
-=: NAMED OBJECTS :=-
TREE COUNT: 0
INDEX GROUP: 
IS BLOCK: 
OBJECT TYPE: HeaderDoc::Header
NAME: class 5
APIUID: //test_ref/doc/header/class_5.test
ABSTRACT: ""
DISCUSSION: "<p></p>"
UPDATED: ""
COPYRIGHT: ""
HTMLMETA: ""
PRIVATEDECLARATION: ""
GROUP: ""
INDEXGROUP: ""
THROWS: ""
XMLTHROWS: ""
UPDATED: ""
LINKAGESTATE: ""
ACCESSCONTROL: ""
AVAILABILITY: ""
LINKUID: ""
ORIGCLASS: ""
ISDEFINE: ""
ISTEMPLATE: ""
VALUE: "UNKNOWN"
RETURNTYPE: ""
LINENUM: ""
CLASS: "HeaderDoc::Header"
MASTERENUM: ""
APIREFSETUPDONE: "1"
TPCDONE: ""
NOREGISTERUID: ""
SUPPRESSCHILDREN: ""
NAMELINE_DISCUSSION: ""
HIDEDOC: ""
HIDESINGLETONS: ""
HIDECONTENTS: ""
MAINOBJECT: ""
LIST ATTRIBUTES: 
SHORT ATTRIBUTES: 
LONG ATTRIBUTES: 
    TREE COUNT: 1
    INDEX GROUP: 
    IS BLOCK: 
    OBJECT TYPE: HeaderDoc::CPPClass
    NAME: OSMetaClass
    APIUID: 
    ABSTRACT: "<p>An instance of a OSMetaClass represents one class then the kernel's runtime type information system is aware of.
"
    DISCUSSION: "<p></p>"
    UPDATED: ""
    COPYRIGHT: ""
    HTMLMETA: ""
    PRIVATEDECLARATION: ""
    GROUP: ""
    INDEXGROUP: ""
    THROWS: ""
    XMLTHROWS: ""
    UPDATED: ""
    LINKAGESTATE: ""
    ACCESSCONTROL: ""
    AVAILABILITY: ""
    LINKUID: ""
    ORIGCLASS: ""
    ISDEFINE: ""
    ISTEMPLATE: ""
    VALUE: "UNKNOWN"
    RETURNTYPE: ""
    LINENUM: ""
    CLASS: "HeaderDoc::CPPClass"
    MASTERENUM: ""
    APIREFSETUPDONE: "1"
    TPCDONE: ""
    NOREGISTERUID: ""
    SUPPRESSCHILDREN: "0"
    NAMELINE_DISCUSSION: ""
    HIDEDOC: ""
    HIDESINGLETONS: ""
    HIDECONTENTS: ""
    MAINOBJECT: ""
    LIST ATTRIBUTES: 
    SHORT ATTRIBUTES: <p><b>Superclass</b></p>

<p><!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/cpp/econst/OSMetaClassBase //test_ref/cpp/data/OSMetaClassBase //test_ref/cpp/clconst/OSMetaClassBase //test_ref/cpp/instm/OSMetaClassBase //test_ref/cpp/clm/OSMetaClassBase //test_ref/cpp/intfcm/OSMetaClassBase //test_ref/cpp/intfm/OSMetaClassBase //test_ref/cpp/func/OSMetaClassBase //test_ref/cpp/ftmplt/OSMetaClassBase //test_ref/cpp/defn/OSMetaClassBase //test_ref/cpp/macro/OSMetaClassBase //test_ref/doc/com/intfm/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" -->OSMetaClassBase<!-- /a --></p>
<p><b>Declared In</b></p><p><a href="../../index.html" logicalPath="//test_ref/doc/header/class_5.test" target="_top" machineGenerated="true">class 5</a></p>

    LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: OSMetaClass
        APIUID: //test_ref/cpp/instm/OSMetaClass/OSMetaClass//()
        ABSTRACT: "<p>Private the default constructor "
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: logError
        APIUID: //test_ref/cpp/clm/OSMetaClass/logError/void/(OSReturn)
        ABSTRACT: "<p>Given an error code log an error string using printf "
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: result
            TYPE: OSReturn
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getMetaClassWithName
        APIUID: //test_ref/cpp/clm/OSMetaClass/getMetaClassWithName/constOSMetaClass*/(constOSSymbol*)
        ABSTRACT: "<p>Lookup a meta-class in the runtime type information system
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static const OSMetaClass *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: const OSSymbol *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/getMetaClassWithName/name
            ABSTRACT: ""
            DISCUSSION: "<p>Name of the desired class's meta-class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: retain
        APIUID: //test_ref/cpp/instm/OSMetaClass/retain/void/()
        ABSTRACT: "<p>Implement abstract but should no dynamic allocation is allowed "
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: release
        APIUID: //test_ref/cpp/instm/OSMetaClass/release/void/()
        ABSTRACT: "<p>Implement abstract but should no dynamic allocation is allowed "
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: release
        APIUID: //test_ref/cpp/instm/OSMetaClass/release/void/(int)
        ABSTRACT: "<p>Implement abstract but should no dynamic allocation is allowed 
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: when
            TYPE: int
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: when
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/release/when
            ABSTRACT: ""
            DISCUSSION: "<p>ignored."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: taggedRetain
        APIUID: //test_ref/cpp/instm/OSMetaClass/taggedRetain/void/(constvoid*)
        ABSTRACT: "<p>Retain a tagged reference in this object.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: tag
            TYPE: const void *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: release
        APIUID: //test_ref/doc/title:instm/OSMetaClass/release/void/(constvoid*)
        ABSTRACT: "<p>Release a tagged reference to this object
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: tag
            TYPE: const void *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: taggedRelease
        APIUID: //test_ref/cpp/instm/OSMetaClass/taggedRelease/void/(constvoid*)
        ABSTRACT: "<p>Release a tagged reference to this object
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: tag
            TYPE: const void *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: release
        APIUID: //test_ref/doc/title:instm/OSMetaClass/release/void/(constvoid*,constint)
        ABSTRACT: "<p>Release a tagged reference to this object
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: tag
            TYPE: const void *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: when
            TYPE: const int
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: taggedRelease
        APIUID: //test_ref/cpp/instm/OSMetaClass/taggedRelease/void/(constvoid*,constint)
        ABSTRACT: "<p>Release a tagged reference to this object
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: tag
            TYPE: const void *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: when
            TYPE: const int
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getRetainCount
        APIUID: //test_ref/cpp/instm/OSMetaClass/getRetainCount/int/()
        ABSTRACT: "<p>Implement abstract but should no dynamic allocation is allowed "
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual int"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: OSMetaClass
        APIUID: //test_ref/cpp/instm/OSMetaClass/OSMetaClass//(constchar*,constOSMetaClass*,unsignedint)
        ABSTRACT: "<p>Constructor for OSMetaClass objects
"
        DISCUSSION: "<p>This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: inClassName
            TYPE: const char *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: inSuperClass
            TYPE: const OSMetaClass *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: inClassSize
            TYPE: unsigned int
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: inClassName
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/OSMetaClass/inClassName
            ABSTRACT: ""
            DISCUSSION: "<p>cString of the name of the class this meta-class represents."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: inSuperClassName
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/OSMetaClass/inSuperClassName
            ABSTRACT: ""
            DISCUSSION: "<p>cString of the name of the super class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: inClassSize
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/OSMetaClass/inClassSize
            ABSTRACT: ""
            DISCUSSION: "<p>sizeof the class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: ~OSMetaClass
        APIUID: //test_ref/doc/title:instm/OSMetaClass/~OSMetaClass//()
        ABSTRACT: "<p>Destructor for OSMetaClass objects
"
        DISCUSSION: "<p>If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. "
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: preModLoad
        APIUID: //test_ref/cpp/clm/OSMetaClass/preModLoad/void*/(constchar*)
        ABSTRACT: "<p>Prepare the runtime type system for the load of a module.
"
        DISCUSSION: "<p>Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static void *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: kmodName
            TYPE: const char *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: kmodName
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/preModLoad/kmodName
            ABSTRACT: ""
            DISCUSSION: "<p>globally unique cString name of the kernel module being loaded."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: checkModLoad
        APIUID: //test_ref/cpp/clm/OSMetaClass/checkModLoad/bool/(void*)
        ABSTRACT: "<p>Check if the current load attempt is still OK.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static bool"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: loadHandle
            TYPE: void *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: loadHandle
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkModLoad/loadHandle
            ABSTRACT: ""
            DISCUSSION: "<p>Handle returned when a successful call to preModLoad is made."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: postModLoad
        APIUID: //test_ref/cpp/clm/OSMetaClass/postModLoad/OSReturn/(void*)
        ABSTRACT: "<p>Finish postprocessing on a kernel module's meta-classes.
"
        DISCUSSION: "<p>As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static OSReturn"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: loadHandle
            TYPE: void *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: loadHandle
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/postModLoad/loadHandle
            ABSTRACT: ""
            DISCUSSION: "<p>Handle returned when a successful call to preModLoad is made."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: modHasInstance
        APIUID: //test_ref/cpp/clm/OSMetaClass/modHasInstance/bool/(constchar*)
        ABSTRACT: "<p>Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
"
        DISCUSSION: "<p>Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static bool"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: kmodName
            TYPE: const char *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: kmodName
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/modHasInstance/kmodName
            ABSTRACT: ""
            DISCUSSION: "<p>cString of the kernel module name."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: reportModInstances
        APIUID: //test_ref/cpp/clm/OSMetaClass/reportModInstances/void/(constchar*)
        ABSTRACT: "<p>Log any object that has instances in a module.
"
        DISCUSSION: "<p>When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: kmodName
            TYPE: const char *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: kmodName
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/reportModInstances/kmodName
            ABSTRACT: ""
            DISCUSSION: "<p>cString of the kernel module name."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: considerUnloads
        APIUID: //test_ref/cpp/clm/OSMetaClass/considerUnloads/void/()
        ABSTRACT: "<p>Schedule module unloading.
"
        DISCUSSION: "<p>Schedule unused modules to be unloaded; called when IOKit matching goes idle. "
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: allocClassWithName
        APIUID: //test_ref/cpp/clm/OSMetaClass/allocClassWithName/OSObject*/(constOSSymbol*)
        ABSTRACT: "<p>Lookup a meta-class in the runtime type information system and return the results of an alloc call.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static OSObject *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: const OSSymbol *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/allocClassWithName/name
            ABSTRACT: ""
            DISCUSSION: "<p>Name of the desired class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: allocClassWithName
        APIUID: //test_ref/cpp/clm/OSMetaClass/allocClassWithName/OSObject*/(constOSString*)
        ABSTRACT: "<p>Lookup a meta-class in the runtime type information system and return the results of an alloc call.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static OSObject *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: const OSString *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/allocClassWithName/name
            ABSTRACT: ""
            DISCUSSION: "<p>Name of the desired class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: allocClassWithName
        APIUID: //test_ref/cpp/clm/OSMetaClass/allocClassWithName/OSObject*/(constchar*)
        ABSTRACT: "<p>Lookup a meta-class in the runtime type information system and return the results of an alloc call.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static OSObject *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: const char *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/allocClassWithName/name
            ABSTRACT: ""
            DISCUSSION: "<p>Name of the desired class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: checkMetaCastWithName
        APIUID: //test_ref/cpp/clm/OSMetaClass/checkMetaCastWithName/OSMetaClassBase*/(constOSSymbol*,constOSMetaClassBase*)
        ABSTRACT: "<p>Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static OSMetaClassBase *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: const OSSymbol *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: in
            TYPE: const OSMetaClassBase *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkMetaCastWithName/name
            ABSTRACT: ""
            DISCUSSION: "<p>Name of the desired class or super class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: in
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkMetaCastWithName/in
            ABSTRACT: ""
            DISCUSSION: "<p>object to be introspected."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: checkMetaCastWithName
        APIUID: //test_ref/cpp/clm/OSMetaClass/checkMetaCastWithName/OSMetaClassBase*/(constOSString*,constOSMetaClassBase*)
        ABSTRACT: "<p>Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static OSMetaClassBase *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: const OSString *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: in
            TYPE: const OSMetaClassBase *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkMetaCastWithName/name
            ABSTRACT: ""
            DISCUSSION: "<p>Name of the desired class or super class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: in
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkMetaCastWithName/in
            ABSTRACT: ""
            DISCUSSION: "<p>object to be introspected."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: checkMetaCastWithName
        APIUID: //test_ref/cpp/clm/OSMetaClass/checkMetaCastWithName/OSMetaClassBase*/(constchar*,constOSMetaClassBase*)
        ABSTRACT: "<p>Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static OSMetaClassBase *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: const char *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: in
            TYPE: const OSMetaClassBase *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkMetaCastWithName/name
            ABSTRACT: ""
            DISCUSSION: "<p>Name of the desired class or super class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: in
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkMetaCastWithName/in
            ABSTRACT: ""
            DISCUSSION: "<p>object to be introspected."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: instanceConstructed
        APIUID: //test_ref/cpp/instm/OSMetaClass/instanceConstructed/void/()
        ABSTRACT: "<p>Counts the instances of the class behind this metaclass.
"
        DISCUSSION: "<p>Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class "
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: instanceDestructed
        APIUID: //test_ref/cpp/instm/OSMetaClass/instanceDestructed/void/()
        ABSTRACT: "<p>Removes one instance of the class behind this metaclass.
"
        DISCUSSION: "<p>OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. "
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: checkMetaCast
        APIUID: //test_ref/cpp/instm/OSMetaClass/checkMetaCast/OSMetaClassBase*/(constOSMetaClassBase*)
        ABSTRACT: "<p>Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " OSMetaClassBase *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: check
            TYPE: const OSMetaClassBase *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: check
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkMetaCast/check
            ABSTRACT: ""
            DISCUSSION: "<p>Pointer of object to introspect."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getInstanceCount
        APIUID: //test_ref/cpp/instm/OSMetaClass/getInstanceCount/unsignedint/()
        ABSTRACT: "<p>How many instances of the class have been created.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " unsigned int"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getSuperClass
        APIUID: //test_ref/cpp/instm/OSMetaClass/getSuperClass/constOSMetaClass*/()
        ABSTRACT: "<p>'Get'ter for the super class.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " const OSMetaClass *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getKmodName
        APIUID: //test_ref/cpp/instm/OSMetaClass/getKmodName/constOSSymbol*/()
        ABSTRACT: "<p>'Get'ter for the name of the kmod.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " const OSSymbol *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getClassName
        APIUID: //test_ref/cpp/instm/OSMetaClass/getClassName/constchar*/()
        ABSTRACT: "<p>'Get'ter for class name.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " const char *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getClassSize
        APIUID: //test_ref/cpp/instm/OSMetaClass/getClassSize/unsignedint/()
        ABSTRACT: "<p>'Get'ter for sizeof(class).
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " unsigned int"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: alloc
        APIUID: //test_ref/cpp/instm/OSMetaClass/alloc/OSObject*/()
        ABSTRACT: "<p>Allocate an instance of the class that this OSMetaClass instance represents.
"
        DISCUSSION: "<p>This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual OSObject *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Constant
        NAME: superClass
        APIUID: //test_ref/cpp/clconst/OSMetaClass/superClass
        ABSTRACT: ""
        DISCUSSION: "<p>Handle to the superclass' meta class.</p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: "const OSMetaClass *"
        LINENUM: ""
        CLASS: "HeaderDoc::Constant"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: "Handle to the superclass' meta class."
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: <p><b>See Also</b></p><div class='list_indent'><dl>
<dt><p><hd_link posstarget="//test_ref/cpp/clconst/OSMetaClass/superClassLink">superClassLink</hd_link></p></dt><dd></dd></dl></div>

        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Constant
        NAME: superClassLink
        APIUID: //test_ref/cpp/clconst/OSMetaClass/superClassLink
        ABSTRACT: ""
        DISCUSSION: "<p>Handle to the superclass' meta class.</p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: "const OSMetaClass *"
        LINENUM: ""
        CLASS: "HeaderDoc::Constant"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: "Handle to the superclass' meta class."
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: <p><b>See Also</b></p><div class='list_indent'><dl>
<dt><p><hd_link posstarget="//test_ref/cpp/clconst/OSMetaClass/superClass">superClass</hd_link></p></dt><dd></dd></dl></div>

        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Constant
        NAME: className
        APIUID: //test_ref/cpp/clconst/OSMetaClass/className
        ABSTRACT: ""
        DISCUSSION: "<p>OSSymbol of the class' name.</p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: "const OSSymbol *"
        LINENUM: ""
        CLASS: "HeaderDoc::Constant"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: "OSSymbol of the class' name."
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS PROPERTY: 0
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Var
        NAME: reserved
        APIUID: //test_ref/cpp/data/OSMetaClass/reserved
        ABSTRACT: ""
        DISCUSSION: "<p>Reserved for future use.  (Internal use only)</p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: "ExpansionData *"
        LINENUM: ""
        CLASS: "HeaderDoc::Var"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: "Reserved for future use.  (Internal use only)"
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS PROPERTY: 0
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Var
        NAME: classSize
        APIUID: //test_ref/cpp/data/OSMetaClass/classSize
        ABSTRACT: ""
        DISCUSSION: "<p>How big is a single instancde of this class.</p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: "unsigned int"
        LINENUM: ""
        CLASS: "HeaderDoc::Var"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: "How big is a single instancde of this class."
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS PROPERTY: 0
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Var
        NAME: instanceCount
        APIUID: //test_ref/cpp/data/OSMetaClass/instanceCount
        ABSTRACT: ""
        DISCUSSION: "<p>Roughly number of instances of the object.  Used primarily as a code in use flag.</p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: "mutable unsigned int"
        LINENUM: ""
        CLASS: "HeaderDoc::Var"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: "Roughly number of instances of the object.  Used primarily as a code in use flag."
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDeclareCommonStructors
        APIUID: //test_ref/cpp/macro/OSDeclareCommonStructors
        ABSTRACT: "<p>Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
"
        DISCUSSION: ""
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDeclareCommonStructors/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDeclareDefaultStructors
        APIUID: //test_ref/cpp/macro/OSDeclareDefaultStructors
        ABSTRACT: "<p>One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
"
        DISCUSSION: "<p>Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDeclareDefaultStructors/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDeclareAbstractStructors
        APIUID: //test_ref/cpp/macro/OSDeclareAbstractStructors
        ABSTRACT: "<p>One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
"
        DISCUSSION: "<p>This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDeclareAbstractStructors/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineMetaClassWithInit
        APIUID: //test_ref/cpp/macro/OSDefineMetaClassWithInit
        ABSTRACT: "<p>Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
"
        DISCUSSION: ""
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: init
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassWithInit/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassWithInit/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: init
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassWithInit/init
            ABSTRACT: ""
            DISCUSSION: "<p>Name of a function to call after the OSMetaClass is constructed."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineAbstractStructors
        APIUID: //test_ref/cpp/macro/OSDefineAbstractStructors
        ABSTRACT: "<p>Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
"
        DISCUSSION: ""
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineAbstractStructors/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineAbstractStructors/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineDefaultStructors
        APIUID: //test_ref/cpp/macro/OSDefineDefaultStructors
        ABSTRACT: "<p>Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
"
        DISCUSSION: ""
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineDefaultStructors/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineDefaultStructors/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineMetaClassAndAbstractStructorsWithInit
        APIUID: //test_ref/cpp/macro/OSDefineMetaClassAndAbstractStructorsWithInit
        ABSTRACT: "<p>Primary definition macro for all abstract classes that a subclasses of OSObject.
"
        DISCUSSION: "<p>Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: init
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndAbstractStructorsWithInit/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndAbstractStructorsWithInit/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: init
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndAbstractStructorsWithInit/init
            ABSTRACT: ""
            DISCUSSION: "<p>Name of a function to call after the OSMetaClass is constructed."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineMetaClassAndStructorsWithInit
        APIUID: //test_ref/cpp/macro/OSDefineMetaClassAndStructorsWithInit
        ABSTRACT: "<p>See OSDefineMetaClassAndStructors
"
        DISCUSSION: "<p>Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: init
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndStructorsWithInit/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndStructorsWithInit/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: init
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndStructorsWithInit/init
            ABSTRACT: ""
            DISCUSSION: "<p>Name of a function to call after the OSMetaClass is constructed."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineMetaClass
        APIUID: //test_ref/cpp/macro/OSDefineMetaClass
        ABSTRACT: "<p>Define an OSMetaClass instance, used for backward compatiblility only.
"
        DISCUSSION: ""
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClass/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClass/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineMetaClassAndStructors
        APIUID: //test_ref/cpp/macro/OSDefineMetaClassAndStructors
        ABSTRACT: "<p>Define an OSMetaClass subclass and the runtime system routines.
"
        DISCUSSION: "<p>Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndStructors/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndStructors/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineMetaClassAndAbstractStructors
        APIUID: //test_ref/cpp/macro/OSDefineMetaClassAndAbstractStructors
        ABSTRACT: "<p>Define an OSMetaClass subclass and the runtime system routines.
"
        DISCUSSION: "<p>Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndAbstractStructors/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndAbstractStructors/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
-=: NAMED OBJECT PARSE TREES :=-
OBJECT: OSMetaClass (HeaderDoc::CPPClass)
+---class
+--- 
+---OSMetaClass
+--- 
+---:
+--- 
+---private
+--- 
+---OSMetaClassBase
+---[ NEWLINE ]
+---{
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---private
|   +---:
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Can never be allocated must be created at compile time
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---operator
|   +--- 
|   +---new
|   +---(
|   |   +---size_t
|   |   +--- 
|   |   +---size
|   |   +---)
|   +---;
|   +--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-struct (HAS STATE)
|   +--- 
|   +---ExpansionData
|   +--- 
|   +---{
|   |   +--- 
|   |   +---}
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var reserved Reserved for future use.  (Internal use only)  
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-ExpansionData (HAS STATE)
|   +--- 
|   +---*
|   +---reserved
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var superClass Handle to the superclass' meta class. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---superClassLink
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var className OSSymbol of the class' name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---className
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var classSize How big is a single instancde of this class. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-unsigned (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---classSize
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-mutable (HAS STATE)
|   +--- 
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---instanceCount
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSMetaClass
|   |   +---
@abstract Private the default constructor 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-OSMetaClass (HAS STATE)
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Called by postModLoad
|   |   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function logError
|   |   +---
@abstract Given an error code log an error string using printf 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---logError
|   +---(
|   |   +---OSReturn
|   |   +--- 
|   |   +---result
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---public
|   +---:
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getMetaClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system
|   |   +---
@param name Name of the desired class's meta-class. 
|   |   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---getMetaClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSSymbol
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---protected
|   +---:
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function retain
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---retain
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---release
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---
@param when ignored. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---release
|   +---(
|   |   +---int
|   |   +--- 
|   |   +---when
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function taggedRetain
|   |   +---
@abstract Retain a tagged reference in this object.
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---taggedRetain
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---tag
|   |   +--- 
|   |   +---=
|   |   +--- 
|   |   +---0
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Release a tagged reference to this object
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---taggedRelease
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---tag
|   |   +--- 
|   |   +---=
|   |   +--- 
|   |   +---0
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Release a tagged reference to this object
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---taggedRelease
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---tag
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---int
|   |   +--- 
|   |   +---when
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getRetainCount
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---getRetainCount
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSMetaClass
|   |   +---
@abstract Constructor for OSMetaClass objects
|   |   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   |   +---
@param inClassName cString of the name of the class this meta-class represents.
|   |   +---
@param inSuperClassName cString of the name of the super class.
|   |   +---
@param inClassSize sizeof the class. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-OSMetaClass (HAS STATE)
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---inClassName
|   |   +---,
|   |   +---[ NEWLINE ]
|   |   +---                
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---inSuperClass
|   |   +---,
|   |   +---[ NEWLINE ]
|   |   +---                
|   |   +---unsigned
|   |   +--- 
|   |   +---int
|   |   +--- 
|   |   +---inClassSize
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function ~OSMetaClass
|   |   +---
@abstract Destructor for OSMetaClass objects
|   |   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---~
|   +---OSMetaClass
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   |   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---statically at compile time, don't accidently try to free them.
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---operator
|   +--- 
|   +---delete
|   +---(
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---,
|   |   +--- 
|   |   +---size_t
|   |   +---)
|   +--- 
|   +---;
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---public
|   +---:
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function preModLoad
|   |   +---
@abstract Prepare the runtime type system for the load of a module.
|   |   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   |   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   |   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---preModLoad
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---kmodName
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkModLoad
|   |   +---
@abstract Check if the current load attempt is still OK.
|   |   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   |   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---bool
|   +--- 
|   +---checkModLoad
|   +---(
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---loadHandle
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function postModLoad
|   |   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   |   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   |   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   |   +---
@result Error code of the first error encountered. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSReturn
|   +--- 
|   +---postModLoad
|   +---(
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---loadHandle
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function modHasInstance
|   |   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   |   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   |   +---
@param kmodName cString of the kernel module name.
|   |   +---
@result true if there are any current instances of any class in the module.
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---bool
|   +--- 
|   +---modHasInstance
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---kmodName
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function reportModInstances
|   |   +---
@abstract Log any object that has instances in a module.
|   |   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   |   +---
@param kmodName cString of the kernel module name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---reportModInstances
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---kmodName
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function considerUnloads
|   |   +---
@abstract Schedule module unloading.
|   |   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---considerUnloads
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function allocClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   |   +---
@param name Name of the desired class. 
|   |   +---
@result pointer to an new object, 0 if not found or so memory. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---allocClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSSymbol
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function allocClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   |   +---
@param name Name of the desired class. 
|   |   +---
@result pointer to an new object, 0 if not found or so memory. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---allocClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSString
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function allocClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   |   +---
@param name Name of the desired class. 
|   |   +---
@result pointer to an new object, 0 if not found or so memory. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---allocClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCastWithName
|   |   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   |   +---
@param name Name of the desired class or super class. 
|   |   +---
@param in object to be introspected. 
|   |   +---
@result in parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---[ NEWLINE ]
|   +---        
|   +---checkMetaCastWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSSymbol
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---in
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCastWithName
|   |   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   |   +---
@param name Name of the desired class or super class.
|   |   +---
@param in object to be introspected.
|   |   +---
@result in parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---[ NEWLINE ]
|   +---        
|   +---checkMetaCastWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSString
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---in
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCastWithName
|   |   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   |   +---
@param name Name of the desired class or super class.
|   |   +---
@param in object to be introspected.
|   |   +---
@result in parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---[ NEWLINE ]
|   +---        
|   +---checkMetaCastWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---in
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function instanceConstructed
|   |   +---
@abstract Counts the instances of the class behind this metaclass.
|   |   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---instanceConstructed
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function instanceDestructed
|   |   +---
@abstract Removes one instance of the class behind this metaclass.
|   |   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---instanceDestructed
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCast
|   |   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   |   +---
@param check Pointer of object to introspect.
|   |   +---
@result check parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-OSMetaClassBase (HAS STATE)
|   +--- 
|   +---*
|   +---checkMetaCast
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---check
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getInstanceCount
|   |   +---
@abstract How many instances of the class have been created.
|   |   +---
@result Count of the number of instances. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-unsigned (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---getInstanceCount
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getSuperClass
|   |   +---
@abstract 'Get'ter for the super class.
|   |   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---getSuperClass
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getKmodName
|   |   +---
@abstract 'Get'ter for the name of the kmod.
|   |   +---
@result OSSymbol representing the kmod name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---        
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---getKmodName
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getClassName
|   |   +---
@abstract 'Get'ter for class name.
|   |   +---
@result cString of the class name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---getClassName
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getClassSize
|   |   +---
@abstract 'Get'ter for sizeof(class).
|   |   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-unsigned (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---getClassSize
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function alloc
|   |   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   |   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   |   +---
@result Pointer to a new object with a retain count of 1. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDeclareCommonStructors
|   |   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDeclareCommonStructors
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---private
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---superClass
|   |   +---;
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---metaClass
|   |   +---;
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---MetaClass
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---public
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---{
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---public
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---virtual
|   |   +--- 
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---}
|   |   +--- 
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---friend
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---)
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDeclareDefaultStructors
|   |   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   |   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   |   +---
@param className Name of class. NO QUOTES. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDeclareDefaultStructors
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---         
|   |   +---private
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---superClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---metaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---MetaClass
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---public
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---{
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---virtual
|   |   +--- 
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---}
|   |   +--- 
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---friend
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---)
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDeclareAbstractStructors
|   |   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   |   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   |   +---
@param className Name of class. NO QUOTES. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDeclareAbstractStructors
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---         
|   |   +---private
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---superClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---metaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---MetaClass
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---public
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---{
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---virtual
|   |   +--- 
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---}
|   |   +--- 
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---friend
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---)
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---private
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Make primary constructor private in abstract 
|   |   |   +---*/
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassWithInit
|   |   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   |   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassWithInit
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---,
|   |   +--- 
|   |   +---init
|   |   +---)
|   |   +---        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +--- 
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---#
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---init
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineAbstractStructors
|   |   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineAbstractStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---0
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineDefaultStructors
|   |   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineDefaultStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---new
|   |   +--- 
|   |   +---className
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---&
|   |   +---gMetaClass
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---gMetaClass
|   |   +---.
|   |   +---instanceConstructed
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   |   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   |   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---,
|   |   +--- 
|   |   +---init
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---  
|   |   +---init
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndStructorsWithInit
|   |   +---
@abstract See OSDefineMetaClassAndStructors
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   |   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndStructorsWithInit
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---,
|   |   +--- 
|   |   +---init
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---  
|   |   +---init
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---new
|   |   +--- 
|   |   +---className
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---&
|   |   +---gMetaClass
|   |   +---)
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---gMetaClass
|   |   +---.
|   |   +---instanceConstructed
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +--- 
|   |   +---Helpers 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClass
|   |   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClass
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---  
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndStructors
|   |   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---   
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---   
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---new
|   |   +--- 
|   |   +---className
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---:
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---&
|   |   +---gMetaClass
|   |   +---)
|   |   +---                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---gMetaClass
|   |   +---.
|   |   +---instanceConstructed
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndAbstractStructors
|   |   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndAbstractStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---   
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---   
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Dynamic vtable patchup support routines and types
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---reservedCalled
|   +---(
|   |   +---int
|   |   +--- 
|   |   +---ind
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDeclareReservedUnused
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---private
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---APPLE_KEXT_PAD_METHOD
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---_RESERVED
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---classname
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---index
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDeclareReservedUsed
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDefineReservedUnused
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---void
|   |   +--- 
|   |   +---classname
|   |   +--- 
|   |   +---::
|   |   +---_RESERVED
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---classname
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---index
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---{
|   |   +--- 
|   |   +---APPLE_KEXT_PAD_IMPL
|   |   +---(
|   |   +---index
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDefineReservedUsed
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---IOKit debug internal routines.
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---printInstanceCounts
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---serializeClassDictionary
|   +---(
|   |   +---OSDictionary
|   |   +--- 
|   |   +---*
|   |   +---dict
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---private
|   +---:
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Obsolete APIs
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSDictionary
|   +--- 
|   +---*
|   +---getClassDictionary
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---bool
|   +--- 
|   +---serialize
|   +---(
|   |   +---OSSerialize
|   |   +--- 
|   |   +---*
|   |   +---s
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Virtual Padding functions for MetaClass's
|   |   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---0
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---1
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---2
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---3
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---4
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---5
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---6
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---7
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---}
+---;
+--- 
+---[ NEWLINE ]
END OF OBJECT


OBJECT: OSMetaClass (HeaderDoc::Function)
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: logError (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getMetaClassWithName (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: retain (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: release (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: release (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: taggedRetain (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getRetainCount (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSMetaClass (HeaderDoc::Function)
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: ~OSMetaClass (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: preModLoad (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: checkModLoad (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: postModLoad (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: modHasInstance (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: reportModInstances (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: considerUnloads (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: allocClassWithName (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: allocClassWithName (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: allocClassWithName (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: checkMetaCastWithName (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: checkMetaCastWithName (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: checkMetaCastWithName (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: instanceConstructed (HeaderDoc::Function)
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: instanceDestructed (HeaderDoc::Function)
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: checkMetaCast (HeaderDoc::Function)
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getInstanceCount (HeaderDoc::Function)
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getSuperClass (HeaderDoc::Function)
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getKmodName (HeaderDoc::Function)
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getClassName (HeaderDoc::Function)
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getClassSize (HeaderDoc::Function)
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: alloc (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: superClassLink (HeaderDoc::Constant)
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---superClassLink
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var className OSSymbol of the class' name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---className
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var classSize How big is a single instancde of this class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---classSize
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-mutable (HAS STATE)
+--- 
+---unsigned
+--- 
+---int
+--- 
+---instanceCount
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Private the default constructor 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: superClassLink (HeaderDoc::Constant)
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---superClassLink
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var className OSSymbol of the class' name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---className
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var classSize How big is a single instancde of this class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---classSize
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-mutable (HAS STATE)
+--- 
+---unsigned
+--- 
+---int
+--- 
+---instanceCount
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Private the default constructor 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: className (HeaderDoc::Constant)
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---className
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var classSize How big is a single instancde of this class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---classSize
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-mutable (HAS STATE)
+--- 
+---unsigned
+--- 
+---int
+--- 
+---instanceCount
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Private the default constructor 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: reserved (HeaderDoc::Var)
+-*-ExpansionData (HAS STATE)
+--- 
+---*
+---reserved
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var superClass Handle to the superclass' meta class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---superClassLink
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var className OSSymbol of the class' name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---className
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var classSize How big is a single instancde of this class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---classSize
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-mutable (HAS STATE)
+--- 
+---unsigned
+--- 
+---int
+--- 
+---instanceCount
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Private the default constructor 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: classSize (HeaderDoc::Var)
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---classSize
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-mutable (HAS STATE)
+--- 
+---unsigned
+--- 
+---int
+--- 
+---instanceCount
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Private the default constructor 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: instanceCount (HeaderDoc::Var)
+-*-mutable (HAS STATE)
+--- 
+---unsigned
+--- 
+---int
+--- 
+---instanceCount
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Private the default constructor 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDeclareCommonStructors (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDeclareDefaultStructors (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDeclareAbstractStructors (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineMetaClassWithInit (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineAbstractStructors (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineDefaultStructors (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineMetaClassAndAbstractStructorsWithInit (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineMetaClassAndStructorsWithInit (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineMetaClass (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineMetaClassAndStructors (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineMetaClassAndAbstractStructors (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT



-=: HTML OUTPUT OF PARSE TREES :=-
OBJECT: OSMetaClass (HeaderDoc::CPPClass)
	<span class="keyword">class</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> : <span class="keyword">private</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> {  
	    <span class="keyword">private</span>: <span class="comment">// Can never be allocated must be created at compile time</span> 
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="keyword">operator</span> <!-- a logicalPath="//test_ref/cpp/instm/new //test_ref/cpp/clm/new //test_ref/cpp/intfcm/new //test_ref/cpp/intfm/new //test_ref/cpp/func/new //test_ref/cpp/ftmplt/new //test_ref/cpp/defn/new //test_ref/cpp/macro/new //test_ref/doc/anysymbol/new" machineGenerated="true" --><span class="function">new</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/size_t //test_ref/cpp/tdef/size_t //test_ref/cpp/tag/size_t //test_ref/cpp/struct/size_t //test_ref/cpp/intf/size_t //test_ref/doc/anysymbol/size_t" machineGenerated="true" --><span class="type">size_t</span><!-- /a --> <span class="param">size</span>);  
	    <span class="keyword">struct</span> <!-- a logicalPath="//test_ref/cpp/cl/ExpansionData //test_ref/cpp/tdef/ExpansionData //test_ref/cpp/tag/ExpansionData //test_ref/cpp/struct/ExpansionData //test_ref/cpp/intf/ExpansionData //test_ref/doc/anysymbol/ExpansionData" machineGenerated="true" --><span class="type">ExpansionData</span><!-- /a --> {
	        };  
	    <span class="comment">/*! @var reserved Reserved for future use.  (Internal use only)  </span>
	        <span class="comment">*/</span>
	    <!-- a logicalPath="//test_ref/cpp/cl/ExpansionData //test_ref/cpp/tdef/ExpansionData //test_ref/cpp/tag/ExpansionData //test_ref/cpp/struct/ExpansionData //test_ref/cpp/intf/ExpansionData //test_ref/doc/anysymbol/ExpansionData" machineGenerated="true" --><span class="type">ExpansionData</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/econst/reserved //test_ref/cpp/data/reserved //test_ref/cpp/clconst/reserved " machineGenerated="true" --><span class="var">reserved</span><!-- /a -->;  
	    <span class="comment">/*! @var superClass Handle to the superclass' meta class. */</span>
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/econst/superClassLink //test_ref/cpp/data/superClassLink //test_ref/cpp/clconst/superClassLink " machineGenerated="true" --><span class="var">superClassLink</span><!-- /a -->;  
	    <span class="comment">/*! @var className OSSymbol of the class' name. */</span>
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className " machineGenerated="true" --><span class="var">className</span><!-- /a -->;  
	    <span class="comment">/*! @var classSize How big is a single instancde of this class. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/econst/classSize //test_ref/cpp/data/classSize //test_ref/cpp/clconst/classSize " machineGenerated="true" --><span class="var">classSize</span><!-- /a -->;  
	    <span class="comment">/*! @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">mutable</span> <span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/econst/instanceCount //test_ref/cpp/data/instanceCount //test_ref/cpp/clconst/instanceCount " machineGenerated="true" --><span class="var">instanceCount</span><!-- /a -->;  
	    <span class="comment">/*! @function OSMetaClass</span>
	        <span class="comment">*/</span>
	    <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="function">OSMetaClass</span><!-- /a -->();  
	    <span class="comment">// Called by postModLoad</span> 
	    <span class="comment">/*! @function logError</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/logError //test_ref/cpp/clm/logError //test_ref/cpp/intfcm/logError //test_ref/cpp/intfm/logError //test_ref/cpp/func/logError //test_ref/cpp/ftmplt/logError //test_ref/cpp/defn/logError //test_ref/cpp/macro/logError //test_ref/doc/anysymbol/logError" machineGenerated="true" --><span class="function">logError</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/OSReturn //test_ref/cpp/tdef/OSReturn //test_ref/cpp/tag/OSReturn //test_ref/cpp/struct/OSReturn //test_ref/cpp/intf/OSReturn //test_ref/doc/anysymbol/OSReturn" machineGenerated="true" --><span class="type">OSReturn</span><!-- /a --> <span class="param">result</span>);  
	    <span class="keyword">public</span>:  <span class="comment">/*! @function getMetaClassWithName
	@abstract Lookup a meta-class in the runtime type information system
	@param name Name of the desired class's meta-class. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/getMetaClassWithName //test_ref/cpp/clm/getMetaClassWithName //test_ref/cpp/intfcm/getMetaClassWithName //test_ref/cpp/intfm/getMetaClassWithName //test_ref/cpp/func/getMetaClassWithName //test_ref/cpp/ftmplt/getMetaClassWithName //test_ref/cpp/defn/getMetaClassWithName //test_ref/cpp/macro/getMetaClassWithName //test_ref/doc/anysymbol/getMetaClassWithName" machineGenerated="true" --><span class="function">getMetaClassWithName</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><span class="param">name</span>);  
	    <span class="keyword">protected</span>: <span class="comment">/*! @function retain</span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/retain //test_ref/cpp/clm/retain //test_ref/cpp/intfcm/retain //test_ref/cpp/intfm/retain //test_ref/cpp/func/retain //test_ref/cpp/ftmplt/retain //test_ref/cpp/defn/retain //test_ref/cpp/macro/retain //test_ref/doc/anysymbol/retain" machineGenerated="true" --><span class="function">retain</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function release</span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/release //test_ref/cpp/clm/release //test_ref/cpp/intfcm/release //test_ref/cpp/intfm/release //test_ref/cpp/func/release //test_ref/cpp/ftmplt/release //test_ref/cpp/defn/release //test_ref/cpp/macro/release //test_ref/doc/anysymbol/release" machineGenerated="true" --><span class="function">release</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function release
	@abstract Implement abstract but should no dynamic allocation is allowed </span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/release //test_ref/cpp/clm/release //test_ref/cpp/intfcm/release //test_ref/cpp/intfm/release //test_ref/cpp/func/release //test_ref/cpp/ftmplt/release //test_ref/cpp/defn/release //test_ref/cpp/macro/release //test_ref/doc/anysymbol/release" machineGenerated="true" --><span class="function">release</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">when</span>) <span class="keyword">const</span>;  
	    <span class="comment">/*! @function taggedRetain
	@abstract Retain a tagged reference in this object.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/taggedRetain //test_ref/cpp/clm/taggedRetain //test_ref/cpp/intfcm/taggedRetain //test_ref/cpp/intfm/taggedRetain //test_ref/cpp/func/taggedRetain //test_ref/cpp/ftmplt/taggedRetain //test_ref/cpp/defn/taggedRetain //test_ref/cpp/macro/taggedRetain //test_ref/doc/anysymbol/taggedRetain" machineGenerated="true" --><span class="function">taggedRetain</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/cl/tag //test_ref/cpp/tdef/tag //test_ref/cpp/tag/tag //test_ref/cpp/struct/tag //test_ref/cpp/intf/tag //test_ref/doc/anysymbol/tag" machineGenerated="true" --><span class="type">tag</span><!-- /a --> = <span class="number">0</span>) <span class="keyword">const</span>;  
	    <span class="comment">/*! @function release
	@abstract Release a tagged reference to this object</span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/taggedRelease //test_ref/cpp/clm/taggedRelease //test_ref/cpp/intfcm/taggedRelease //test_ref/cpp/intfm/taggedRelease //test_ref/cpp/func/taggedRelease //test_ref/cpp/ftmplt/taggedRelease //test_ref/cpp/defn/taggedRelease //test_ref/cpp/macro/taggedRelease //test_ref/doc/anysymbol/taggedRelease" machineGenerated="true" --><span class="function">taggedRelease</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/cl/tag //test_ref/cpp/tdef/tag //test_ref/cpp/tag/tag //test_ref/cpp/struct/tag //test_ref/cpp/intf/tag //test_ref/doc/anysymbol/tag" machineGenerated="true" --><span class="type">tag</span><!-- /a --> = <span class="number">0</span>) <span class="keyword">const</span>;  
	    <span class="comment">/*! @function release
	@abstract Release a tagged reference to this object</span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/taggedRelease //test_ref/cpp/clm/taggedRelease //test_ref/cpp/intfcm/taggedRelease //test_ref/cpp/intfm/taggedRelease //test_ref/cpp/func/taggedRelease //test_ref/cpp/ftmplt/taggedRelease //test_ref/cpp/defn/taggedRelease //test_ref/cpp/macro/taggedRelease //test_ref/doc/anysymbol/taggedRelease" machineGenerated="true" --><span class="function">taggedRelease</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="param">tag</span>,
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">when</span>) <span class="keyword">const</span>;  
	    <span class="comment">/*! @function getRetainCount</span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/getRetainCount //test_ref/cpp/clm/getRetainCount //test_ref/cpp/intfcm/getRetainCount //test_ref/cpp/intfm/getRetainCount //test_ref/cpp/func/getRetainCount //test_ref/cpp/ftmplt/getRetainCount //test_ref/cpp/defn/getRetainCount //test_ref/cpp/macro/getRetainCount //test_ref/doc/anysymbol/getRetainCount" machineGenerated="true" --><span class="function">getRetainCount</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="keyword">virtual</span> <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="function">getMetaClass</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function OSMetaClass
	@abstract Constructor for OSMetaClass objects
	@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
	@param inClassName cString of the name of the class this meta-class represents.
	@param inSuperClassName cString of the name of the super class.</span>
	        <span class="comment">*/</span>
	    <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="function">OSMetaClass</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">inClassName</span>, 
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><span class="param">inSuperClass</span>, 
	        <span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">inClassSize</span>);  
	    <span class="comment">/*! @function ~OSMetaClass
	@abstract Destructor for OSMetaClass objects</span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> ~<!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="function">OSMetaClass</span><!-- /a -->();  
	    <span class="comment">// Needs to be overriden as NULL as all OSMetaClass objects are allocated</span> 
	    <span class="comment">// statically at compile time, don't accidently try to free them.</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="keyword">operator</span> <!-- a logicalPath="//test_ref/cpp/instm/delete //test_ref/cpp/clm/delete //test_ref/cpp/intfcm/delete //test_ref/cpp/intfm/delete //test_ref/cpp/func/delete //test_ref/cpp/ftmplt/delete //test_ref/cpp/defn/delete //test_ref/cpp/macro/delete //test_ref/doc/anysymbol/delete" machineGenerated="true" --><span class="function">delete</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="param">*</span>,
	        <span class="param">size_t</span>);  
	    <span class="keyword">public</span>: <span class="keyword">static</span> <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass " machineGenerated="true" --><span class="var">metaClass</span><!-- /a -->;  
	    <span class="comment">/*! @function preModLoad
	@abstract Prepare the runtime type system for the load of a module.
	@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
	@param kmodName globally unique cString name of the kernel module being loaded. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/preModLoad //test_ref/cpp/clm/preModLoad //test_ref/cpp/intfcm/preModLoad //test_ref/cpp/intfm/preModLoad //test_ref/cpp/func/preModLoad //test_ref/cpp/ftmplt/preModLoad //test_ref/cpp/defn/preModLoad //test_ref/cpp/macro/preModLoad //test_ref/doc/anysymbol/preModLoad" machineGenerated="true" --><span class="function">preModLoad</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">kmodName</span>);  
	    <span class="comment">/*! @function checkModLoad
	@abstract Check if the current load attempt is still OK.
	@param loadHandle Handle returned when a successful call to preModLoad is made.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/bool //test_ref/cpp/tdef/bool //test_ref/cpp/tag/bool //test_ref/cpp/struct/bool //test_ref/cpp/intf/bool //test_ref/doc/anysymbol/bool" machineGenerated="true" --><span class="type">bool</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/checkModLoad //test_ref/cpp/clm/checkModLoad //test_ref/cpp/intfcm/checkModLoad //test_ref/cpp/intfm/checkModLoad //test_ref/cpp/func/checkModLoad //test_ref/cpp/ftmplt/checkModLoad //test_ref/cpp/defn/checkModLoad //test_ref/cpp/macro/checkModLoad //test_ref/doc/anysymbol/checkModLoad" machineGenerated="true" --><span class="function">checkModLoad</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="param">loadHandle</span>);  
	    <span class="comment">/*! @function postModLoad
	@abstract Finish postprocessing on a kernel module's meta-classes.
	@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
	@param loadHandle Handle returned when a successful call to preModLoad is made.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSReturn //test_ref/cpp/tdef/OSReturn //test_ref/cpp/tag/OSReturn //test_ref/cpp/struct/OSReturn //test_ref/cpp/intf/OSReturn //test_ref/doc/anysymbol/OSReturn" machineGenerated="true" --><span class="type">OSReturn</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/postModLoad //test_ref/cpp/clm/postModLoad //test_ref/cpp/intfcm/postModLoad //test_ref/cpp/intfm/postModLoad //test_ref/cpp/func/postModLoad //test_ref/cpp/ftmplt/postModLoad //test_ref/cpp/defn/postModLoad //test_ref/cpp/macro/postModLoad //test_ref/doc/anysymbol/postModLoad" machineGenerated="true" --><span class="function">postModLoad</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="param">loadHandle</span>);  
	    <span class="comment">/*! @function modHasInstance
	@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
	@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
	@param kmodName cString of the kernel module name.
	@result true if there are any current instances of any class in the module.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/bool //test_ref/cpp/tdef/bool //test_ref/cpp/tag/bool //test_ref/cpp/struct/bool //test_ref/cpp/intf/bool //test_ref/doc/anysymbol/bool" machineGenerated="true" --><span class="type">bool</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/modHasInstance //test_ref/cpp/clm/modHasInstance //test_ref/cpp/intfcm/modHasInstance //test_ref/cpp/intfm/modHasInstance //test_ref/cpp/func/modHasInstance //test_ref/cpp/ftmplt/modHasInstance //test_ref/cpp/defn/modHasInstance //test_ref/cpp/macro/modHasInstance //test_ref/doc/anysymbol/modHasInstance" machineGenerated="true" --><span class="function">modHasInstance</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">kmodName</span>);  
	    <span class="comment">/*! @function reportModInstances
	@abstract Log any object that has instances in a module.
	@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/reportModInstances //test_ref/cpp/clm/reportModInstances //test_ref/cpp/intfcm/reportModInstances //test_ref/cpp/intfm/reportModInstances //test_ref/cpp/func/reportModInstances //test_ref/cpp/ftmplt/reportModInstances //test_ref/cpp/defn/reportModInstances //test_ref/cpp/macro/reportModInstances //test_ref/doc/anysymbol/reportModInstances" machineGenerated="true" --><span class="function">reportModInstances</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">kmodName</span>);  
	    <span class="comment">/*! @function considerUnloads
	@abstract Schedule module unloading.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/considerUnloads //test_ref/cpp/clm/considerUnloads //test_ref/cpp/intfcm/considerUnloads //test_ref/cpp/intfm/considerUnloads //test_ref/cpp/func/considerUnloads //test_ref/cpp/ftmplt/considerUnloads //test_ref/cpp/defn/considerUnloads //test_ref/cpp/macro/considerUnloads //test_ref/doc/anysymbol/considerUnloads" machineGenerated="true" --><span class="function">considerUnloads</span><!-- /a -->();  
	    <span class="comment">/*! @function allocClassWithName
	@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
	@param name Name of the desired class. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/allocClassWithName //test_ref/cpp/clm/allocClassWithName //test_ref/cpp/intfcm/allocClassWithName //test_ref/cpp/intfm/allocClassWithName //test_ref/cpp/func/allocClassWithName //test_ref/cpp/ftmplt/allocClassWithName //test_ref/cpp/defn/allocClassWithName //test_ref/cpp/macro/allocClassWithName //test_ref/doc/anysymbol/allocClassWithName" machineGenerated="true" --><span class="function">allocClassWithName</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><span class="param">name</span>);  
	    <span class="comment">/*! @function allocClassWithName
	@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
	@param name Name of the desired class. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/allocClassWithName //test_ref/cpp/clm/allocClassWithName //test_ref/cpp/intfcm/allocClassWithName //test_ref/cpp/intfm/allocClassWithName //test_ref/cpp/func/allocClassWithName //test_ref/cpp/ftmplt/allocClassWithName //test_ref/cpp/defn/allocClassWithName //test_ref/cpp/macro/allocClassWithName //test_ref/doc/anysymbol/allocClassWithName" machineGenerated="true" --><span class="function">allocClassWithName</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSString //test_ref/cpp/tdef/OSString //test_ref/cpp/tag/OSString //test_ref/cpp/struct/OSString //test_ref/cpp/intf/OSString //test_ref/doc/anysymbol/OSString" machineGenerated="true" --><span class="type">OSString</span><!-- /a --> <span class="type">*</span><span class="param">name</span>);  
	    <span class="comment">/*! @function allocClassWithName
	@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
	@param name Name of the desired class. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/allocClassWithName //test_ref/cpp/clm/allocClassWithName //test_ref/cpp/intfcm/allocClassWithName //test_ref/cpp/intfm/allocClassWithName //test_ref/cpp/func/allocClassWithName //test_ref/cpp/ftmplt/allocClassWithName //test_ref/cpp/defn/allocClassWithName //test_ref/cpp/macro/allocClassWithName //test_ref/doc/anysymbol/allocClassWithName" machineGenerated="true" --><span class="function">allocClassWithName</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">name</span>);  
	    <span class="comment">/*! @function checkMetaCastWithName
	@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
	@param name Name of the desired class or super class. 
	@param in object to be introspected. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span> <!-- a logicalPath="//test_ref/cpp/instm/checkMetaCastWithName //test_ref/cpp/clm/checkMetaCastWithName //test_ref/cpp/intfcm/checkMetaCastWithName //test_ref/cpp/intfm/checkMetaCastWithName //test_ref/cpp/func/checkMetaCastWithName //test_ref/cpp/ftmplt/checkMetaCastWithName //test_ref/cpp/defn/checkMetaCastWithName //test_ref/cpp/macro/checkMetaCastWithName //test_ref/doc/anysymbol/checkMetaCastWithName" machineGenerated="true" --><span class="function">checkMetaCastWithName</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><span class="param">name</span>,
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">in</span>);  
	    <span class="comment">/*! @function checkMetaCastWithName
	@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
	@param name Name of the desired class or super class.
	@param in object to be introspected.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span> <!-- a logicalPath="//test_ref/cpp/instm/checkMetaCastWithName //test_ref/cpp/clm/checkMetaCastWithName //test_ref/cpp/intfcm/checkMetaCastWithName //test_ref/cpp/intfm/checkMetaCastWithName //test_ref/cpp/func/checkMetaCastWithName //test_ref/cpp/ftmplt/checkMetaCastWithName //test_ref/cpp/defn/checkMetaCastWithName //test_ref/cpp/macro/checkMetaCastWithName //test_ref/doc/anysymbol/checkMetaCastWithName" machineGenerated="true" --><span class="function">checkMetaCastWithName</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSString //test_ref/cpp/tdef/OSString //test_ref/cpp/tag/OSString //test_ref/cpp/struct/OSString //test_ref/cpp/intf/OSString //test_ref/doc/anysymbol/OSString" machineGenerated="true" --><span class="type">OSString</span><!-- /a --> <span class="type">*</span><span class="param">name</span>,
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">in</span>);  
	    <span class="comment">/*! @function checkMetaCastWithName
	@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
	@param name Name of the desired class or super class.
	@param in object to be introspected.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span> <!-- a logicalPath="//test_ref/cpp/instm/checkMetaCastWithName //test_ref/cpp/clm/checkMetaCastWithName //test_ref/cpp/intfcm/checkMetaCastWithName //test_ref/cpp/intfm/checkMetaCastWithName //test_ref/cpp/func/checkMetaCastWithName //test_ref/cpp/ftmplt/checkMetaCastWithName //test_ref/cpp/defn/checkMetaCastWithName //test_ref/cpp/macro/checkMetaCastWithName //test_ref/doc/anysymbol/checkMetaCastWithName" machineGenerated="true" --><span class="function">checkMetaCastWithName</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">name</span>,
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">in</span>);   
	    <span class="comment">/*! @function instanceConstructed
	@abstract Counts the instances of the class behind this metaclass.</span>
	        <span class="comment">*/</span>
	    <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/instanceConstructed //test_ref/cpp/clm/instanceConstructed //test_ref/cpp/intfcm/instanceConstructed //test_ref/cpp/intfm/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="function">instanceConstructed</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function instanceDestructed
	@abstract Removes one instance of the class behind this metaclass.</span>
	        <span class="comment">*/</span>
	    <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/instanceDestructed //test_ref/cpp/clm/instanceDestructed //test_ref/cpp/intfcm/instanceDestructed //test_ref/cpp/intfm/instanceDestructed //test_ref/cpp/func/instanceDestructed //test_ref/cpp/ftmplt/instanceDestructed //test_ref/cpp/defn/instanceDestructed //test_ref/cpp/macro/instanceDestructed //test_ref/doc/anysymbol/instanceDestructed" machineGenerated="true" --><span class="function">instanceDestructed</span><!-- /a -->() <span class="keyword">const</span>;   
	    <span class="comment">/*! @function checkMetaCast
	@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
	@param check Pointer of object to introspect.</span>
	        <span class="comment">*/</span>
	    <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/checkMetaCast //test_ref/cpp/clm/checkMetaCast //test_ref/cpp/intfcm/checkMetaCast //test_ref/cpp/intfm/checkMetaCast //test_ref/cpp/func/checkMetaCast //test_ref/cpp/ftmplt/checkMetaCast //test_ref/cpp/defn/checkMetaCast //test_ref/cpp/macro/checkMetaCast //test_ref/doc/anysymbol/checkMetaCast" machineGenerated="true" --><span class="function">checkMetaCast</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">check</span>) <span class="keyword">const</span>;   
	    <span class="comment">/*! @function getInstanceCount
	@abstract How many instances of the class have been created.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/getInstanceCount //test_ref/cpp/clm/getInstanceCount //test_ref/cpp/intfcm/getInstanceCount //test_ref/cpp/intfm/getInstanceCount //test_ref/cpp/func/getInstanceCount //test_ref/cpp/ftmplt/getInstanceCount //test_ref/cpp/defn/getInstanceCount //test_ref/cpp/macro/getInstanceCount //test_ref/doc/anysymbol/getInstanceCount" machineGenerated="true" --><span class="function">getInstanceCount</span><!-- /a -->() <span class="keyword">const</span>;   
	    <span class="comment">/*! @function getSuperClass
	@abstract 'Get'ter for the super class.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/getSuperClass //test_ref/cpp/clm/getSuperClass //test_ref/cpp/intfcm/getSuperClass //test_ref/cpp/intfm/getSuperClass //test_ref/cpp/func/getSuperClass //test_ref/cpp/ftmplt/getSuperClass //test_ref/cpp/defn/getSuperClass //test_ref/cpp/macro/getSuperClass //test_ref/doc/anysymbol/getSuperClass" machineGenerated="true" --><span class="function">getSuperClass</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function getKmodName
	@abstract 'Get'ter for the name of the kmod.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/getKmodName //test_ref/cpp/clm/getKmodName //test_ref/cpp/intfcm/getKmodName //test_ref/cpp/intfm/getKmodName //test_ref/cpp/func/getKmodName //test_ref/cpp/ftmplt/getKmodName //test_ref/cpp/defn/getKmodName //test_ref/cpp/macro/getKmodName //test_ref/doc/anysymbol/getKmodName" machineGenerated="true" --><span class="function">getKmodName</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function getClassName
	@abstract 'Get'ter for class name.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/getClassName //test_ref/cpp/clm/getClassName //test_ref/cpp/intfcm/getClassName //test_ref/cpp/intfm/getClassName //test_ref/cpp/func/getClassName //test_ref/cpp/ftmplt/getClassName //test_ref/cpp/defn/getClassName //test_ref/cpp/macro/getClassName //test_ref/doc/anysymbol/getClassName" machineGenerated="true" --><span class="function">getClassName</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function getClassSize
	@abstract 'Get'ter for sizeof(class).</span>
	        <span class="comment">*/</span>
	    <span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/getClassSize //test_ref/cpp/clm/getClassSize //test_ref/cpp/intfcm/getClassSize //test_ref/cpp/intfm/getClassSize //test_ref/cpp/func/getClassSize //test_ref/cpp/ftmplt/getClassSize //test_ref/cpp/defn/getClassSize //test_ref/cpp/macro/getClassSize //test_ref/doc/anysymbol/getClassSize" machineGenerated="true" --><span class="function">getClassSize</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function alloc
	@abstract Allocate an instance of the class that this OSMetaClass instance represents.
	@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="function">alloc</span><!-- /a -->() <span class="keyword">const</span> = <span class="number">0</span>;  
	    <span class="comment">/*! @function OSDeclareCommonStructors
	@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDeclareCommonStructors //test_ref/cpp/tdef/OSDeclareCommonStructors //test_ref/cpp/tag/OSDeclareCommonStructors //test_ref/cpp/struct/OSDeclareCommonStructors //test_ref/cpp/intf/OSDeclareCommonStructors //test_ref/cpp/econst/OSDeclareCommonStructors //test_ref/cpp/data/OSDeclareCommonStructors //test_ref/cpp/clconst/OSDeclareCommonStructors //test_ref/cpp/instm/OSDeclareCommonStructors //test_ref/cpp/clm/OSDeclareCommonStructors //test_ref/cpp/intfcm/OSDeclareCommonStructors //test_ref/cpp/intfm/OSDeclareCommonStructors //test_ref/cpp/func/OSDeclareCommonStructors //test_ref/cpp/ftmplt/OSDeclareCommonStructors //test_ref/cpp/defn/OSDeclareCommonStructors //test_ref/cpp/macro/OSDeclareCommonStructors //test_ref/doc/com/intfm/OSDeclareCommonStructors //test_ref/doc/anysymbol/OSDeclareCommonStructors" machineGenerated="true" --><span class="preprocessor">OSDeclareCommonStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/class //test_ref/cpp/clconst/class //test_ref/cpp/instm/class //test_ref/cpp/clm/class //test_ref/cpp/intfcm/class //test_ref/cpp/intfm/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <span class="preprocessor">:</span> <span class="preprocessor">public</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">{</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">}</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/friend //test_ref/cpp/tdef/friend //test_ref/cpp/tag/friend //test_ref/cpp/struct/friend //test_ref/cpp/intf/friend //test_ref/cpp/econst/friend //test_ref/cpp/data/friend //test_ref/cpp/clconst/friend //test_ref/cpp/instm/friend //test_ref/cpp/clm/friend //test_ref/cpp/intfcm/friend //test_ref/cpp/intfm/friend //test_ref/cpp/func/friend //test_ref/cpp/ftmplt/friend //test_ref/cpp/defn/friend //test_ref/cpp/macro/friend //test_ref/doc/com/intfm/friend //test_ref/doc/anysymbol/friend" machineGenerated="true" --><span class="preprocessor">friend</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/class //test_ref/cpp/clconst/class //test_ref/cpp/instm/class //test_ref/cpp/clm/class //test_ref/cpp/intfcm/class //test_ref/cpp/intfm/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">protected</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span>   
	    <span class="comment">/*! @function OSDeclareDefaultStructors
	@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
	@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDeclareDefaultStructors //test_ref/cpp/tdef/OSDeclareDefaultStructors //test_ref/cpp/tag/OSDeclareDefaultStructors //test_ref/cpp/struct/OSDeclareDefaultStructors //test_ref/cpp/intf/OSDeclareDefaultStructors //test_ref/cpp/econst/OSDeclareDefaultStructors //test_ref/cpp/data/OSDeclareDefaultStructors //test_ref/cpp/clconst/OSDeclareDefaultStructors //test_ref/cpp/instm/OSDeclareDefaultStructors //test_ref/cpp/clm/OSDeclareDefaultStructors //test_ref/cpp/intfcm/OSDeclareDefaultStructors //test_ref/cpp/intfm/OSDeclareDefaultStructors //test_ref/cpp/func/OSDeclareDefaultStructors //test_ref/cpp/ftmplt/OSDeclareDefaultStructors //test_ref/cpp/defn/OSDeclareDefaultStructors //test_ref/cpp/macro/OSDeclareDefaultStructors //test_ref/doc/com/intfm/OSDeclareDefaultStructors //test_ref/doc/anysymbol/OSDeclareDefaultStructors" machineGenerated="true" --><span class="preprocessor">OSDeclareDefaultStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/class //test_ref/cpp/clconst/class //test_ref/cpp/instm/class //test_ref/cpp/clm/class //test_ref/cpp/intfcm/class //test_ref/cpp/intfm/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <span class="preprocessor">:</span> <span class="preprocessor">public</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">{</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">}</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/friend //test_ref/cpp/tdef/friend //test_ref/cpp/tag/friend //test_ref/cpp/struct/friend //test_ref/cpp/intf/friend //test_ref/cpp/econst/friend //test_ref/cpp/data/friend //test_ref/cpp/clconst/friend //test_ref/cpp/instm/friend //test_ref/cpp/clm/friend //test_ref/cpp/intfcm/friend //test_ref/cpp/intfm/friend //test_ref/cpp/func/friend //test_ref/cpp/ftmplt/friend //test_ref/cpp/defn/friend //test_ref/cpp/macro/friend //test_ref/doc/com/intfm/friend //test_ref/doc/anysymbol/friend" machineGenerated="true" --><span class="preprocessor">friend</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/class //test_ref/cpp/clconst/class //test_ref/cpp/instm/class //test_ref/cpp/clm/class //test_ref/cpp/intfcm/class //test_ref/cpp/intfm/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">protected</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">protected</span><span class="preprocessor">:</span>   
	    <span class="comment">/*! @function OSDeclareAbstractStructors
	@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
	@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDeclareAbstractStructors //test_ref/cpp/tdef/OSDeclareAbstractStructors //test_ref/cpp/tag/OSDeclareAbstractStructors //test_ref/cpp/struct/OSDeclareAbstractStructors //test_ref/cpp/intf/OSDeclareAbstractStructors //test_ref/cpp/econst/OSDeclareAbstractStructors //test_ref/cpp/data/OSDeclareAbstractStructors //test_ref/cpp/clconst/OSDeclareAbstractStructors //test_ref/cpp/instm/OSDeclareAbstractStructors //test_ref/cpp/clm/OSDeclareAbstractStructors //test_ref/cpp/intfcm/OSDeclareAbstractStructors //test_ref/cpp/intfm/OSDeclareAbstractStructors //test_ref/cpp/func/OSDeclareAbstractStructors //test_ref/cpp/ftmplt/OSDeclareAbstractStructors //test_ref/cpp/defn/OSDeclareAbstractStructors //test_ref/cpp/macro/OSDeclareAbstractStructors //test_ref/doc/com/intfm/OSDeclareAbstractStructors //test_ref/doc/anysymbol/OSDeclareAbstractStructors" machineGenerated="true" --><span class="preprocessor">OSDeclareAbstractStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/class //test_ref/cpp/clconst/class //test_ref/cpp/instm/class //test_ref/cpp/clm/class //test_ref/cpp/intfcm/class //test_ref/cpp/intfm/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <span class="preprocessor">:</span> <span class="preprocessor">public</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">{</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">}</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/friend //test_ref/cpp/tdef/friend //test_ref/cpp/tag/friend //test_ref/cpp/struct/friend //test_ref/cpp/intf/friend //test_ref/cpp/econst/friend //test_ref/cpp/data/friend //test_ref/cpp/clconst/friend //test_ref/cpp/instm/friend //test_ref/cpp/clm/friend //test_ref/cpp/intfcm/friend //test_ref/cpp/intfm/friend //test_ref/cpp/func/friend //test_ref/cpp/ftmplt/friend //test_ref/cpp/defn/friend //test_ref/cpp/macro/friend //test_ref/doc/com/intfm/friend //test_ref/doc/anysymbol/friend" machineGenerated="true" --><span class="preprocessor">friend</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/class //test_ref/cpp/clconst/class //test_ref/cpp/instm/class //test_ref/cpp/clm/class //test_ref/cpp/intfcm/class //test_ref/cpp/intfm/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">protected</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="comment"><span class="comment">/*</span> <span class="comment">Make primary constructor private in abstract </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">protected</span><span class="preprocessor">:</span>  
	    <span class="comment">/*! @function OSDefineMetaClassWithInit
	@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
	@param className Name of class. NO QUOTES and NO MACROS.
	@param superClassName Name of super class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassWithInit //test_ref/cpp/tdef/OSDefineMetaClassWithInit //test_ref/cpp/tag/OSDefineMetaClassWithInit //test_ref/cpp/struct/OSDefineMetaClassWithInit //test_ref/cpp/intf/OSDefineMetaClassWithInit //test_ref/cpp/econst/OSDefineMetaClassWithInit //test_ref/cpp/data/OSDefineMetaClassWithInit //test_ref/cpp/clconst/OSDefineMetaClassWithInit //test_ref/cpp/instm/OSDefineMetaClassWithInit //test_ref/cpp/clm/OSDefineMetaClassWithInit //test_ref/cpp/intfcm/OSDefineMetaClassWithInit //test_ref/cpp/intfm/OSDefineMetaClassWithInit //test_ref/cpp/func/OSDefineMetaClassWithInit //test_ref/cpp/ftmplt/OSDefineMetaClassWithInit //test_ref/cpp/defn/OSDefineMetaClassWithInit //test_ref/cpp/macro/OSDefineMetaClassWithInit //test_ref/doc/com/intfm/OSDefineMetaClassWithInit //test_ref/doc/anysymbol/OSDefineMetaClassWithInit" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassWithInit</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/init //test_ref/cpp/clconst/init //test_ref/cpp/instm/init //test_ref/cpp/clm/init //test_ref/cpp/intfcm/init //test_ref/cpp/intfm/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">#</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/sizeof //test_ref/cpp/instm/sizeof //test_ref/cpp/clm/sizeof //test_ref/cpp/intfcm/sizeof //test_ref/cpp/intfm/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/init //test_ref/cpp/clconst/init //test_ref/cpp/instm/init //test_ref/cpp/clm/init //test_ref/cpp/intfcm/init //test_ref/cpp/intfm/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="comment">/*! @function OSDefineAbstractStructors
	@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
	@param className Name of class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineAbstractStructors //test_ref/cpp/tdef/OSDefineAbstractStructors //test_ref/cpp/tag/OSDefineAbstractStructors //test_ref/cpp/struct/OSDefineAbstractStructors //test_ref/cpp/intf/OSDefineAbstractStructors //test_ref/cpp/econst/OSDefineAbstractStructors //test_ref/cpp/data/OSDefineAbstractStructors //test_ref/cpp/clconst/OSDefineAbstractStructors //test_ref/cpp/instm/OSDefineAbstractStructors //test_ref/cpp/clm/OSDefineAbstractStructors //test_ref/cpp/intfcm/OSDefineAbstractStructors //test_ref/cpp/intfm/OSDefineAbstractStructors //test_ref/cpp/func/OSDefineAbstractStructors //test_ref/cpp/ftmplt/OSDefineAbstractStructors //test_ref/cpp/defn/OSDefineAbstractStructors //test_ref/cpp/macro/OSDefineAbstractStructors //test_ref/doc/com/intfm/OSDefineAbstractStructors //test_ref/doc/anysymbol/OSDefineAbstractStructors" machineGenerated="true" --><span class="preprocessor">OSDefineAbstractStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">0</span><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="comment">/*! @function OSDefineDefaultStructors
	@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
	@param className Name of class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineDefaultStructors //test_ref/cpp/tdef/OSDefineDefaultStructors //test_ref/cpp/tag/OSDefineDefaultStructors //test_ref/cpp/struct/OSDefineDefaultStructors //test_ref/cpp/intf/OSDefineDefaultStructors //test_ref/cpp/econst/OSDefineDefaultStructors //test_ref/cpp/data/OSDefineDefaultStructors //test_ref/cpp/clconst/OSDefineDefaultStructors //test_ref/cpp/instm/OSDefineDefaultStructors //test_ref/cpp/clm/OSDefineDefaultStructors //test_ref/cpp/intfcm/OSDefineDefaultStructors //test_ref/cpp/intfm/OSDefineDefaultStructors //test_ref/cpp/func/OSDefineDefaultStructors //test_ref/cpp/ftmplt/OSDefineDefaultStructors //test_ref/cpp/defn/OSDefineDefaultStructors //test_ref/cpp/macro/OSDefineDefaultStructors //test_ref/doc/com/intfm/OSDefineDefaultStructors //test_ref/doc/anysymbol/OSDefineDefaultStructors" machineGenerated="true" --><span class="preprocessor">OSDefineDefaultStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/new //test_ref/cpp/tdef/new //test_ref/cpp/tag/new //test_ref/cpp/struct/new //test_ref/cpp/intf/new //test_ref/cpp/econst/new //test_ref/cpp/data/new //test_ref/cpp/clconst/new //test_ref/cpp/instm/new //test_ref/cpp/clm/new //test_ref/cpp/intfcm/new //test_ref/cpp/intfm/new //test_ref/cpp/func/new //test_ref/cpp/ftmplt/new //test_ref/cpp/defn/new //test_ref/cpp/macro/new //test_ref/doc/com/intfm/new //test_ref/doc/anysymbol/new" machineGenerated="true" --><span class="preprocessor">new</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">.</span><!-- a logicalPath="//test_ref/cpp/cl/instanceConstructed //test_ref/cpp/tdef/instanceConstructed //test_ref/cpp/tag/instanceConstructed //test_ref/cpp/struct/instanceConstructed //test_ref/cpp/intf/instanceConstructed //test_ref/cpp/econst/instanceConstructed //test_ref/cpp/data/instanceConstructed //test_ref/cpp/clconst/instanceConstructed //test_ref/cpp/instm/instanceConstructed //test_ref/cpp/clm/instanceConstructed //test_ref/cpp/intfcm/instanceConstructed //test_ref/cpp/intfm/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/com/intfm/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="preprocessor">instanceConstructed</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>   
	    <span class="comment">/*! @function OSDefineMetaClassAndAbstractStructorsWithInit
	@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
	@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
	@param className Name of class. NO QUOTES and NO MACROS.
	@param superClassName Name of super class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/tdef/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/tag/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/struct/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/intf/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/econst/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/data/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/clconst/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/instm/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/clm/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/intfcm/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/intfm/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/func/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/ftmplt/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/defn/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/macro/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/doc/com/intfm/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/doc/anysymbol/OSDefineMetaClassAndAbstractStructorsWithInit" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndAbstractStructorsWithInit</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/init //test_ref/cpp/clconst/init //test_ref/cpp/instm/init //test_ref/cpp/clm/init //test_ref/cpp/intfcm/init //test_ref/cpp/intfm/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/sizeof //test_ref/cpp/instm/sizeof //test_ref/cpp/clm/sizeof //test_ref/cpp/intfcm/sizeof //test_ref/cpp/intfm/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/init //test_ref/cpp/clconst/init //test_ref/cpp/instm/init //test_ref/cpp/clm/init //test_ref/cpp/intfcm/init //test_ref/cpp/intfm/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="comment">/*! @function OSDefineMetaClassAndStructorsWithInit
	@abstract See OSDefineMetaClassAndStructors
	@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
	@param className Name of class. NO QUOTES and NO MACROS.
	@param superClassName Name of super class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/tdef/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/tag/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/struct/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/intf/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/econst/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/data/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/clconst/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/instm/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/clm/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/intfcm/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/intfm/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/func/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/ftmplt/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/defn/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/macro/OSDefineMetaClassAndStructorsWithInit //test_ref/doc/com/intfm/OSDefineMetaClassAndStructorsWithInit //test_ref/doc/anysymbol/OSDefineMetaClassAndStructorsWithInit" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndStructorsWithInit</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/init //test_ref/cpp/clconst/init //test_ref/cpp/instm/init //test_ref/cpp/clm/init //test_ref/cpp/intfcm/init //test_ref/cpp/intfm/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/sizeof //test_ref/cpp/instm/sizeof //test_ref/cpp/clm/sizeof //test_ref/cpp/intfcm/sizeof //test_ref/cpp/intfm/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/init //test_ref/cpp/clconst/init //test_ref/cpp/instm/init //test_ref/cpp/clm/init //test_ref/cpp/intfcm/init //test_ref/cpp/intfm/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/new //test_ref/cpp/tdef/new //test_ref/cpp/tag/new //test_ref/cpp/struct/new //test_ref/cpp/intf/new //test_ref/cpp/econst/new //test_ref/cpp/data/new //test_ref/cpp/clconst/new //test_ref/cpp/instm/new //test_ref/cpp/clm/new //test_ref/cpp/intfcm/new //test_ref/cpp/intfm/new //test_ref/cpp/func/new //test_ref/cpp/ftmplt/new //test_ref/cpp/defn/new //test_ref/cpp/macro/new //test_ref/doc/com/intfm/new //test_ref/doc/anysymbol/new" machineGenerated="true" --><span class="preprocessor">new</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">.</span><!-- a logicalPath="//test_ref/cpp/cl/instanceConstructed //test_ref/cpp/tdef/instanceConstructed //test_ref/cpp/tag/instanceConstructed //test_ref/cpp/struct/instanceConstructed //test_ref/cpp/intf/instanceConstructed //test_ref/cpp/econst/instanceConstructed //test_ref/cpp/data/instanceConstructed //test_ref/cpp/clconst/instanceConstructed //test_ref/cpp/instm/instanceConstructed //test_ref/cpp/clm/instanceConstructed //test_ref/cpp/intfcm/instanceConstructed //test_ref/cpp/intfm/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/com/intfm/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="preprocessor">instanceConstructed</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="comment">/* Helpers */</span>
	    <span class="comment">/*! @function OSDefineMetaClass
	@abstract Define an OSMetaClass instance, used for backward compatiblility only.
	@param className Name of class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClass //test_ref/cpp/tdef/OSDefineMetaClass //test_ref/cpp/tag/OSDefineMetaClass //test_ref/cpp/struct/OSDefineMetaClass //test_ref/cpp/intf/OSDefineMetaClass //test_ref/cpp/econst/OSDefineMetaClass //test_ref/cpp/data/OSDefineMetaClass //test_ref/cpp/clconst/OSDefineMetaClass //test_ref/cpp/instm/OSDefineMetaClass //test_ref/cpp/clm/OSDefineMetaClass //test_ref/cpp/intfcm/OSDefineMetaClass //test_ref/cpp/intfm/OSDefineMetaClass //test_ref/cpp/func/OSDefineMetaClass //test_ref/cpp/ftmplt/OSDefineMetaClass //test_ref/cpp/defn/OSDefineMetaClass //test_ref/cpp/macro/OSDefineMetaClass //test_ref/doc/com/intfm/OSDefineMetaClass //test_ref/doc/anysymbol/OSDefineMetaClass" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClass</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/sizeof //test_ref/cpp/instm/sizeof //test_ref/cpp/clm/sizeof //test_ref/cpp/intfcm/sizeof //test_ref/cpp/intfm/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="comment">/*! @function OSDefineMetaClassAndStructors
	@abstract Define an OSMetaClass subclass and the runtime system routines.
	@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
	@param className Name of class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndStructors //test_ref/cpp/tdef/OSDefineMetaClassAndStructors //test_ref/cpp/tag/OSDefineMetaClassAndStructors //test_ref/cpp/struct/OSDefineMetaClassAndStructors //test_ref/cpp/intf/OSDefineMetaClassAndStructors //test_ref/cpp/econst/OSDefineMetaClassAndStructors //test_ref/cpp/data/OSDefineMetaClassAndStructors //test_ref/cpp/clconst/OSDefineMetaClassAndStructors //test_ref/cpp/instm/OSDefineMetaClassAndStructors //test_ref/cpp/clm/OSDefineMetaClassAndStructors //test_ref/cpp/intfcm/OSDefineMetaClassAndStructors //test_ref/cpp/intfm/OSDefineMetaClassAndStructors //test_ref/cpp/func/OSDefineMetaClassAndStructors //test_ref/cpp/ftmplt/OSDefineMetaClassAndStructors //test_ref/cpp/defn/OSDefineMetaClassAndStructors //test_ref/cpp/macro/OSDefineMetaClassAndStructors //test_ref/doc/com/intfm/OSDefineMetaClassAndStructors //test_ref/doc/anysymbol/OSDefineMetaClassAndStructors" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/sizeof //test_ref/cpp/instm/sizeof //test_ref/cpp/clm/sizeof //test_ref/cpp/intfcm/sizeof //test_ref/cpp/intfm/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/new //test_ref/cpp/tdef/new //test_ref/cpp/tag/new //test_ref/cpp/struct/new //test_ref/cpp/intf/new //test_ref/cpp/econst/new //test_ref/cpp/data/new //test_ref/cpp/clconst/new //test_ref/cpp/instm/new //test_ref/cpp/clm/new //test_ref/cpp/intfcm/new //test_ref/cpp/intfm/new //test_ref/cpp/func/new //test_ref/cpp/ftmplt/new //test_ref/cpp/defn/new //test_ref/cpp/macro/new //test_ref/doc/com/intfm/new //test_ref/doc/anysymbol/new" machineGenerated="true" --><span class="preprocessor">new</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">.</span><!-- a logicalPath="//test_ref/cpp/cl/instanceConstructed //test_ref/cpp/tdef/instanceConstructed //test_ref/cpp/tag/instanceConstructed //test_ref/cpp/struct/instanceConstructed //test_ref/cpp/intf/instanceConstructed //test_ref/cpp/econst/instanceConstructed //test_ref/cpp/data/instanceConstructed //test_ref/cpp/clconst/instanceConstructed //test_ref/cpp/instm/instanceConstructed //test_ref/cpp/clm/instanceConstructed //test_ref/cpp/intfcm/instanceConstructed //test_ref/cpp/intfm/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/com/intfm/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="preprocessor">instanceConstructed</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="comment">/*! @function OSDefineMetaClassAndAbstractStructors
	@abstract Define an OSMetaClass subclass and the runtime system routines.
	@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
	@param className Name of class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/tdef/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/tag/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/struct/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/intf/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/econst/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/data/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/clconst/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/instm/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/clm/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/intfcm/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/intfm/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/func/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/ftmplt/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/defn/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/macro/OSDefineMetaClassAndAbstractStructors //test_ref/doc/com/intfm/OSDefineMetaClassAndAbstractStructors //test_ref/doc/anysymbol/OSDefineMetaClassAndAbstractStructors" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndAbstractStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/sizeof //test_ref/cpp/instm/sizeof //test_ref/cpp/clm/sizeof //test_ref/cpp/intfcm/sizeof //test_ref/cpp/intfm/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="comment">// Dynamic vtable patchup support routines and types</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/reservedCalled //test_ref/cpp/clm/reservedCalled //test_ref/cpp/intfcm/reservedCalled //test_ref/cpp/intfm/reservedCalled //test_ref/cpp/func/reservedCalled //test_ref/cpp/ftmplt/reservedCalled //test_ref/cpp/defn/reservedCalled //test_ref/cpp/macro/reservedCalled //test_ref/doc/anysymbol/reservedCalled" machineGenerated="true" --><span class="function">reservedCalled</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">ind</span>) <span class="keyword">const</span>;  
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassDeclareReservedUnused //test_ref/cpp/tdef/OSMetaClassDeclareReservedUnused //test_ref/cpp/tag/OSMetaClassDeclareReservedUnused //test_ref/cpp/struct/OSMetaClassDeclareReservedUnused //test_ref/cpp/intf/OSMetaClassDeclareReservedUnused //test_ref/cpp/econst/OSMetaClassDeclareReservedUnused //test_ref/cpp/data/OSMetaClassDeclareReservedUnused //test_ref/cpp/clconst/OSMetaClassDeclareReservedUnused //test_ref/cpp/instm/OSMetaClassDeclareReservedUnused //test_ref/cpp/clm/OSMetaClassDeclareReservedUnused //test_ref/cpp/intfcm/OSMetaClassDeclareReservedUnused //test_ref/cpp/intfm/OSMetaClassDeclareReservedUnused //test_ref/cpp/func/OSMetaClassDeclareReservedUnused //test_ref/cpp/ftmplt/OSMetaClassDeclareReservedUnused //test_ref/cpp/defn/OSMetaClassDeclareReservedUnused //test_ref/cpp/macro/OSMetaClassDeclareReservedUnused //test_ref/doc/com/intfm/OSMetaClassDeclareReservedUnused //test_ref/doc/anysymbol/OSMetaClassDeclareReservedUnused" machineGenerated="true" --><span class="preprocessor">OSMetaClassDeclareReservedUnused</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/classname //test_ref/cpp/instm/classname //test_ref/cpp/clm/classname //test_ref/cpp/intfcm/classname //test_ref/cpp/intfm/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/index //test_ref/cpp/clconst/index //test_ref/cpp/instm/index //test_ref/cpp/clm/index //test_ref/cpp/intfcm/index //test_ref/cpp/intfm/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/cpp/econst/APPLE_KEXT_PAD_METHOD //test_ref/cpp/data/APPLE_KEXT_PAD_METHOD //test_ref/cpp/clconst/APPLE_KEXT_PAD_METHOD //test_ref/cpp/instm/APPLE_KEXT_PAD_METHOD //test_ref/cpp/clm/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intfcm/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intfm/APPLE_KEXT_PAD_METHOD //test_ref/cpp/func/APPLE_KEXT_PAD_METHOD //test_ref/cpp/ftmplt/APPLE_KEXT_PAD_METHOD //test_ref/cpp/defn/APPLE_KEXT_PAD_METHOD //test_ref/cpp/macro/APPLE_KEXT_PAD_METHOD //test_ref/doc/com/intfm/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="preprocessor">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/cpp/econst/void //test_ref/cpp/data/void //test_ref/cpp/clconst/void //test_ref/cpp/instm/void //test_ref/cpp/clm/void //test_ref/cpp/intfcm/void //test_ref/cpp/intfm/void //test_ref/cpp/func/void //test_ref/cpp/ftmplt/void //test_ref/cpp/defn/void //test_ref/cpp/macro/void //test_ref/doc/com/intfm/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="preprocessor">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/cpp/econst/_RESERVED //test_ref/cpp/data/_RESERVED //test_ref/cpp/clconst/_RESERVED //test_ref/cpp/instm/_RESERVED //test_ref/cpp/clm/_RESERVED //test_ref/cpp/intfcm/_RESERVED //test_ref/cpp/intfm/_RESERVED //test_ref/cpp/func/_RESERVED //test_ref/cpp/ftmplt/_RESERVED //test_ref/cpp/defn/_RESERVED //test_ref/cpp/macro/_RESERVED //test_ref/doc/com/intfm/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="preprocessor">_RESERVED</span><!-- /a --> <span class="preprocessor">#</span><span class="preprocessor">#</span> <!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/classname //test_ref/cpp/instm/classname //test_ref/cpp/clm/classname //test_ref/cpp/intfcm/classname //test_ref/cpp/intfm/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --> <span class="preprocessor">#</span><span class="preprocessor">#</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/index //test_ref/cpp/clconst/index //test_ref/cpp/instm/index //test_ref/cpp/clm/index //test_ref/cpp/intfcm/index //test_ref/cpp/intfm/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span>  
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassDeclareReservedUsed //test_ref/cpp/tdef/OSMetaClassDeclareReservedUsed //test_ref/cpp/tag/OSMetaClassDeclareReservedUsed //test_ref/cpp/struct/OSMetaClassDeclareReservedUsed //test_ref/cpp/intf/OSMetaClassDeclareReservedUsed //test_ref/cpp/econst/OSMetaClassDeclareReservedUsed //test_ref/cpp/data/OSMetaClassDeclareReservedUsed //test_ref/cpp/clconst/OSMetaClassDeclareReservedUsed //test_ref/cpp/instm/OSMetaClassDeclareReservedUsed //test_ref/cpp/clm/OSMetaClassDeclareReservedUsed //test_ref/cpp/intfcm/OSMetaClassDeclareReservedUsed //test_ref/cpp/intfm/OSMetaClassDeclareReservedUsed //test_ref/cpp/func/OSMetaClassDeclareReservedUsed //test_ref/cpp/ftmplt/OSMetaClassDeclareReservedUsed //test_ref/cpp/defn/OSMetaClassDeclareReservedUsed //test_ref/cpp/macro/OSMetaClassDeclareReservedUsed //test_ref/doc/com/intfm/OSMetaClassDeclareReservedUsed //test_ref/doc/anysymbol/OSMetaClassDeclareReservedUsed" machineGenerated="true" --><span class="preprocessor">OSMetaClassDeclareReservedUsed</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/classname //test_ref/cpp/instm/classname //test_ref/cpp/clm/classname //test_ref/cpp/intfcm/classname //test_ref/cpp/intfm/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/index //test_ref/cpp/clconst/index //test_ref/cpp/instm/index //test_ref/cpp/clm/index //test_ref/cpp/intfcm/index //test_ref/cpp/intfm/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --><span class="preprocessor">)</span>  
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassDefineReservedUnused //test_ref/cpp/tdef/OSMetaClassDefineReservedUnused //test_ref/cpp/tag/OSMetaClassDefineReservedUnused //test_ref/cpp/struct/OSMetaClassDefineReservedUnused //test_ref/cpp/intf/OSMetaClassDefineReservedUnused //test_ref/cpp/econst/OSMetaClassDefineReservedUnused //test_ref/cpp/data/OSMetaClassDefineReservedUnused //test_ref/cpp/clconst/OSMetaClassDefineReservedUnused //test_ref/cpp/instm/OSMetaClassDefineReservedUnused //test_ref/cpp/clm/OSMetaClassDefineReservedUnused //test_ref/cpp/intfcm/OSMetaClassDefineReservedUnused //test_ref/cpp/intfm/OSMetaClassDefineReservedUnused //test_ref/cpp/func/OSMetaClassDefineReservedUnused //test_ref/cpp/ftmplt/OSMetaClassDefineReservedUnused //test_ref/cpp/defn/OSMetaClassDefineReservedUnused //test_ref/cpp/macro/OSMetaClassDefineReservedUnused //test_ref/doc/com/intfm/OSMetaClassDefineReservedUnused //test_ref/doc/anysymbol/OSMetaClassDefineReservedUnused" machineGenerated="true" --><span class="preprocessor">OSMetaClassDefineReservedUnused</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/classname //test_ref/cpp/instm/classname //test_ref/cpp/clm/classname //test_ref/cpp/intfcm/classname //test_ref/cpp/intfm/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/index //test_ref/cpp/clconst/index //test_ref/cpp/instm/index //test_ref/cpp/clm/index //test_ref/cpp/intfcm/index //test_ref/cpp/intfm/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/cpp/econst/void //test_ref/cpp/data/void //test_ref/cpp/clconst/void //test_ref/cpp/instm/void //test_ref/cpp/clm/void //test_ref/cpp/intfcm/void //test_ref/cpp/intfm/void //test_ref/cpp/func/void //test_ref/cpp/ftmplt/void //test_ref/cpp/defn/void //test_ref/cpp/macro/void //test_ref/doc/com/intfm/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="preprocessor">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/classname //test_ref/cpp/instm/classname //test_ref/cpp/clm/classname //test_ref/cpp/intfcm/classname //test_ref/cpp/intfm/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/cpp/econst/_RESERVED //test_ref/cpp/data/_RESERVED //test_ref/cpp/clconst/_RESERVED //test_ref/cpp/instm/_RESERVED //test_ref/cpp/clm/_RESERVED //test_ref/cpp/intfcm/_RESERVED //test_ref/cpp/intfm/_RESERVED //test_ref/cpp/func/_RESERVED //test_ref/cpp/ftmplt/_RESERVED //test_ref/cpp/defn/_RESERVED //test_ref/cpp/macro/_RESERVED //test_ref/doc/com/intfm/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="preprocessor">_RESERVED</span><!-- /a --> <span class="preprocessor">#</span><span class="preprocessor">#</span> <!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/classname //test_ref/cpp/instm/classname //test_ref/cpp/clm/classname //test_ref/cpp/intfcm/classname //test_ref/cpp/intfm/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --> <span class="preprocessor">#</span><span class="preprocessor">#</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/index //test_ref/cpp/clconst/index //test_ref/cpp/instm/index //test_ref/cpp/clm/index //test_ref/cpp/intfcm/index //test_ref/cpp/intfm/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_IMPL //test_ref/cpp/tdef/APPLE_KEXT_PAD_IMPL //test_ref/cpp/tag/APPLE_KEXT_PAD_IMPL //test_ref/cpp/struct/APPLE_KEXT_PAD_IMPL //test_ref/cpp/intf/APPLE_KEXT_PAD_IMPL //test_ref/cpp/econst/APPLE_KEXT_PAD_IMPL //test_ref/cpp/data/APPLE_KEXT_PAD_IMPL //test_ref/cpp/clconst/APPLE_KEXT_PAD_IMPL //test_ref/cpp/instm/APPLE_KEXT_PAD_IMPL //test_ref/cpp/clm/APPLE_KEXT_PAD_IMPL //test_ref/cpp/intfcm/APPLE_KEXT_PAD_IMPL //test_ref/cpp/intfm/APPLE_KEXT_PAD_IMPL //test_ref/cpp/func/APPLE_KEXT_PAD_IMPL //test_ref/cpp/ftmplt/APPLE_KEXT_PAD_IMPL //test_ref/cpp/defn/APPLE_KEXT_PAD_IMPL //test_ref/cpp/macro/APPLE_KEXT_PAD_IMPL //test_ref/doc/com/intfm/APPLE_KEXT_PAD_IMPL //test_ref/doc/anysymbol/APPLE_KEXT_PAD_IMPL" machineGenerated="true" --><span class="preprocessor">APPLE_KEXT_PAD_IMPL</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/index //test_ref/cpp/clconst/index //test_ref/cpp/instm/index //test_ref/cpp/clm/index //test_ref/cpp/intfcm/index //test_ref/cpp/intfm/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassDefineReservedUsed //test_ref/cpp/tdef/OSMetaClassDefineReservedUsed //test_ref/cpp/tag/OSMetaClassDefineReservedUsed //test_ref/cpp/struct/OSMetaClassDefineReservedUsed //test_ref/cpp/intf/OSMetaClassDefineReservedUsed //test_ref/cpp/econst/OSMetaClassDefineReservedUsed //test_ref/cpp/data/OSMetaClassDefineReservedUsed //test_ref/cpp/clconst/OSMetaClassDefineReservedUsed //test_ref/cpp/instm/OSMetaClassDefineReservedUsed //test_ref/cpp/clm/OSMetaClassDefineReservedUsed //test_ref/cpp/intfcm/OSMetaClassDefineReservedUsed //test_ref/cpp/intfm/OSMetaClassDefineReservedUsed //test_ref/cpp/func/OSMetaClassDefineReservedUsed //test_ref/cpp/ftmplt/OSMetaClassDefineReservedUsed //test_ref/cpp/defn/OSMetaClassDefineReservedUsed //test_ref/cpp/macro/OSMetaClassDefineReservedUsed //test_ref/doc/com/intfm/OSMetaClassDefineReservedUsed //test_ref/doc/anysymbol/OSMetaClassDefineReservedUsed" machineGenerated="true" --><span class="preprocessor">OSMetaClassDefineReservedUsed</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/classname //test_ref/cpp/instm/classname //test_ref/cpp/clm/classname //test_ref/cpp/intfcm/classname //test_ref/cpp/intfm/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/index //test_ref/cpp/clconst/index //test_ref/cpp/instm/index //test_ref/cpp/clm/index //test_ref/cpp/intfcm/index //test_ref/cpp/intfm/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --><span class="preprocessor">)</span>  
	    <span class="comment">// IOKit debug internal routines.</span> 
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/printInstanceCounts //test_ref/cpp/clm/printInstanceCounts //test_ref/cpp/intfcm/printInstanceCounts //test_ref/cpp/intfm/printInstanceCounts //test_ref/cpp/func/printInstanceCounts //test_ref/cpp/ftmplt/printInstanceCounts //test_ref/cpp/defn/printInstanceCounts //test_ref/cpp/macro/printInstanceCounts //test_ref/doc/anysymbol/printInstanceCounts" machineGenerated="true" --><span class="function">printInstanceCounts</span><!-- /a -->(); 
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/serializeClassDictionary //test_ref/cpp/clm/serializeClassDictionary //test_ref/cpp/intfcm/serializeClassDictionary //test_ref/cpp/intfm/serializeClassDictionary //test_ref/cpp/func/serializeClassDictionary //test_ref/cpp/ftmplt/serializeClassDictionary //test_ref/cpp/defn/serializeClassDictionary //test_ref/cpp/macro/serializeClassDictionary //test_ref/doc/anysymbol/serializeClassDictionary" machineGenerated="true" --><span class="function">serializeClassDictionary</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/OSDictionary //test_ref/cpp/tdef/OSDictionary //test_ref/cpp/tag/OSDictionary //test_ref/cpp/struct/OSDictionary //test_ref/cpp/intf/OSDictionary //test_ref/doc/anysymbol/OSDictionary" machineGenerated="true" --><span class="type">OSDictionary</span><!-- /a --> <span class="type">*</span><span class="param">dict</span>);  
	    <span class="keyword">private</span>: <span class="comment">// Obsolete APIs</span> 
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDictionary //test_ref/cpp/tdef/OSDictionary //test_ref/cpp/tag/OSDictionary //test_ref/cpp/struct/OSDictionary //test_ref/cpp/intf/OSDictionary //test_ref/doc/anysymbol/OSDictionary" machineGenerated="true" --><span class="type">OSDictionary</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/getClassDictionary //test_ref/cpp/clm/getClassDictionary //test_ref/cpp/intfcm/getClassDictionary //test_ref/cpp/intfm/getClassDictionary //test_ref/cpp/func/getClassDictionary //test_ref/cpp/ftmplt/getClassDictionary //test_ref/cpp/defn/getClassDictionary //test_ref/cpp/macro/getClassDictionary //test_ref/doc/anysymbol/getClassDictionary" machineGenerated="true" --><span class="function">getClassDictionary</span><!-- /a -->(); 
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/bool //test_ref/cpp/tdef/bool //test_ref/cpp/tag/bool //test_ref/cpp/struct/bool //test_ref/cpp/intf/bool //test_ref/doc/anysymbol/bool" machineGenerated="true" --><span class="type">bool</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/serialize //test_ref/cpp/clm/serialize //test_ref/cpp/intfcm/serialize //test_ref/cpp/intfm/serialize //test_ref/cpp/func/serialize //test_ref/cpp/ftmplt/serialize //test_ref/cpp/defn/serialize //test_ref/cpp/macro/serialize //test_ref/doc/anysymbol/serialize" machineGenerated="true" --><span class="function">serialize</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/OSSerialize //test_ref/cpp/tdef/OSSerialize //test_ref/cpp/tag/OSSerialize //test_ref/cpp/struct/OSSerialize //test_ref/cpp/intf/OSSerialize //test_ref/doc/anysymbol/OSSerialize" machineGenerated="true" --><span class="type">OSSerialize</span><!-- /a --> <span class="type">*</span><span class="param">s</span>) <span class="keyword">const</span>;  
	    <span class="comment">// Virtual Padding functions for MetaClass's</span>  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="function">OSMetaClass</span><!-- /a --> <span class="number">0</span> ();  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">1</span> ();  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">2</span> ();  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">3</span> ();  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">4</span> ();  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">5</span> ();  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">6</span> ();  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">7</span> (); 
	};  
END OF OBJECT


OBJECT: OSMetaClass (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="function">OSMetaClass</span><!-- /a -->(); 
END OF OBJECT


OBJECT: logError (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/logError //test_ref/cpp/clm/OSMetaClass/logError //test_ref/cpp/intfcm/OSMetaClass/logError //test_ref/cpp/intfm/OSMetaClass/logError //test_ref/cpp/func/logError //test_ref/cpp/ftmplt/OSMetaClass/logError //test_ref/cpp/defn/logError //test_ref/cpp/macro/logError //test_ref/doc/anysymbol/logError" machineGenerated="true" --><span class="function">logError</span><!-- /a -->(
	    <!-- a logicalPath="//test_ref/cpp/cl/OSReturn //test_ref/cpp/tdef/OSReturn //test_ref/cpp/tag/OSReturn //test_ref/cpp/struct/OSReturn //test_ref/cpp/intf/OSReturn //test_ref/doc/anysymbol/OSReturn" machineGenerated="true" --><span class="type">OSReturn</span><!-- /a --> <span class="param">result</span>); 
END OF OBJECT


OBJECT: getMetaClassWithName (HeaderDoc::Function)
	<span class="keyword">static</span> <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getMetaClassWithName //test_ref/cpp/clm/OSMetaClass/getMetaClassWithName //test_ref/cpp/intfcm/OSMetaClass/getMetaClassWithName //test_ref/cpp/intfm/OSMetaClass/getMetaClassWithName //test_ref/cpp/func/getMetaClassWithName //test_ref/cpp/ftmplt/OSMetaClass/getMetaClassWithName //test_ref/cpp/defn/getMetaClassWithName //test_ref/cpp/macro/getMetaClassWithName //test_ref/doc/anysymbol/getMetaClassWithName" machineGenerated="true" --><span class="function">getMetaClassWithName</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><span class="param">name</span>); 
END OF OBJECT


OBJECT: retain (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/retain //test_ref/cpp/clm/OSMetaClass/retain //test_ref/cpp/intfcm/OSMetaClass/retain //test_ref/cpp/intfm/OSMetaClass/retain //test_ref/cpp/func/retain //test_ref/cpp/ftmplt/OSMetaClass/retain //test_ref/cpp/defn/retain //test_ref/cpp/macro/retain //test_ref/doc/anysymbol/retain" machineGenerated="true" --><span class="function">retain</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: release (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/release //test_ref/cpp/clm/OSMetaClass/release //test_ref/cpp/intfcm/OSMetaClass/release //test_ref/cpp/intfm/OSMetaClass/release //test_ref/cpp/func/release //test_ref/cpp/ftmplt/OSMetaClass/release //test_ref/cpp/defn/release //test_ref/cpp/macro/release //test_ref/doc/anysymbol/release" machineGenerated="true" --><span class="function">release</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: release (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/release //test_ref/cpp/clm/OSMetaClass/release //test_ref/cpp/intfcm/OSMetaClass/release //test_ref/cpp/intfm/OSMetaClass/release //test_ref/cpp/func/release //test_ref/cpp/ftmplt/OSMetaClass/release //test_ref/cpp/defn/release //test_ref/cpp/macro/release //test_ref/doc/anysymbol/release" machineGenerated="true" --><span class="function">release</span><!-- /a -->(
	    <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">when</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: taggedRetain (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/taggedRetain //test_ref/cpp/clm/OSMetaClass/taggedRetain //test_ref/cpp/intfcm/OSMetaClass/taggedRetain //test_ref/cpp/intfm/OSMetaClass/taggedRetain //test_ref/cpp/func/taggedRetain //test_ref/cpp/ftmplt/OSMetaClass/taggedRetain //test_ref/cpp/defn/taggedRetain //test_ref/cpp/macro/taggedRetain //test_ref/doc/anysymbol/taggedRetain" machineGenerated="true" --><span class="function">taggedRetain</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/cl/tag //test_ref/cpp/tdef/tag //test_ref/cpp/tag/tag //test_ref/cpp/struct/tag //test_ref/cpp/intf/tag //test_ref/doc/anysymbol/tag" machineGenerated="true" --><span class="type">tag</span><!-- /a --> = <span class="number">0</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/taggedRelease //test_ref/cpp/clm/OSMetaClass/taggedRelease //test_ref/cpp/intfcm/OSMetaClass/taggedRelease //test_ref/cpp/intfm/OSMetaClass/taggedRelease //test_ref/cpp/func/taggedRelease //test_ref/cpp/ftmplt/OSMetaClass/taggedRelease //test_ref/cpp/defn/taggedRelease //test_ref/cpp/macro/taggedRelease //test_ref/doc/anysymbol/taggedRelease" machineGenerated="true" --><span class="function">taggedRelease</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/cl/tag //test_ref/cpp/tdef/tag //test_ref/cpp/tag/tag //test_ref/cpp/struct/tag //test_ref/cpp/intf/tag //test_ref/doc/anysymbol/tag" machineGenerated="true" --><span class="type">tag</span><!-- /a --> = <span class="number">0</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/taggedRelease //test_ref/cpp/clm/OSMetaClass/taggedRelease //test_ref/cpp/intfcm/OSMetaClass/taggedRelease //test_ref/cpp/intfm/OSMetaClass/taggedRelease //test_ref/cpp/func/taggedRelease //test_ref/cpp/ftmplt/OSMetaClass/taggedRelease //test_ref/cpp/defn/taggedRelease //test_ref/cpp/macro/taggedRelease //test_ref/doc/anysymbol/taggedRelease" machineGenerated="true" --><span class="function">taggedRelease</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/cl/tag //test_ref/cpp/tdef/tag //test_ref/cpp/tag/tag //test_ref/cpp/struct/tag //test_ref/cpp/intf/tag //test_ref/doc/anysymbol/tag" machineGenerated="true" --><span class="type">tag</span><!-- /a --> = <span class="number">0</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/taggedRelease //test_ref/cpp/clm/OSMetaClass/taggedRelease //test_ref/cpp/intfcm/OSMetaClass/taggedRelease //test_ref/cpp/intfm/OSMetaClass/taggedRelease //test_ref/cpp/func/taggedRelease //test_ref/cpp/ftmplt/OSMetaClass/taggedRelease //test_ref/cpp/defn/taggedRelease //test_ref/cpp/macro/taggedRelease //test_ref/doc/anysymbol/taggedRelease" machineGenerated="true" --><span class="function">taggedRelease</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="param">tag</span>,
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">when</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/taggedRelease //test_ref/cpp/clm/OSMetaClass/taggedRelease //test_ref/cpp/intfcm/OSMetaClass/taggedRelease //test_ref/cpp/intfm/OSMetaClass/taggedRelease //test_ref/cpp/func/taggedRelease //test_ref/cpp/ftmplt/OSMetaClass/taggedRelease //test_ref/cpp/defn/taggedRelease //test_ref/cpp/macro/taggedRelease //test_ref/doc/anysymbol/taggedRelease" machineGenerated="true" --><span class="function">taggedRelease</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="param">tag</span>,
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">when</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: getRetainCount (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getRetainCount //test_ref/cpp/clm/OSMetaClass/getRetainCount //test_ref/cpp/intfcm/OSMetaClass/getRetainCount //test_ref/cpp/intfm/OSMetaClass/getRetainCount //test_ref/cpp/func/getRetainCount //test_ref/cpp/ftmplt/OSMetaClass/getRetainCount //test_ref/cpp/defn/getRetainCount //test_ref/cpp/macro/getRetainCount //test_ref/doc/anysymbol/getRetainCount" machineGenerated="true" --><span class="function">getRetainCount</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: OSMetaClass (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="function">OSMetaClass</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">inClassName</span>, 
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><span class="param">inSuperClass</span>, 
	    <span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">inClassSize</span>); 
END OF OBJECT


OBJECT: ~OSMetaClass (HeaderDoc::Function)
	<span class="keyword">virtual</span> ~<!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="function">OSMetaClass</span><!-- /a -->(); 
END OF OBJECT


OBJECT: preModLoad (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/preModLoad //test_ref/cpp/clm/OSMetaClass/preModLoad //test_ref/cpp/intfcm/OSMetaClass/preModLoad //test_ref/cpp/intfm/OSMetaClass/preModLoad //test_ref/cpp/func/preModLoad //test_ref/cpp/ftmplt/OSMetaClass/preModLoad //test_ref/cpp/defn/preModLoad //test_ref/cpp/macro/preModLoad //test_ref/doc/anysymbol/preModLoad" machineGenerated="true" --><span class="function">preModLoad</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">kmodName</span>); 
END OF OBJECT


OBJECT: checkModLoad (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/bool //test_ref/cpp/tdef/bool //test_ref/cpp/tag/bool //test_ref/cpp/struct/bool //test_ref/cpp/intf/bool //test_ref/doc/anysymbol/bool" machineGenerated="true" --><span class="type">bool</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/checkModLoad //test_ref/cpp/clm/OSMetaClass/checkModLoad //test_ref/cpp/intfcm/OSMetaClass/checkModLoad //test_ref/cpp/intfm/OSMetaClass/checkModLoad //test_ref/cpp/func/checkModLoad //test_ref/cpp/ftmplt/OSMetaClass/checkModLoad //test_ref/cpp/defn/checkModLoad //test_ref/cpp/macro/checkModLoad //test_ref/doc/anysymbol/checkModLoad" machineGenerated="true" --><span class="function">checkModLoad</span><!-- /a -->(
	    <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="param">loadHandle</span>); 
END OF OBJECT


OBJECT: postModLoad (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSReturn //test_ref/cpp/tdef/OSReturn //test_ref/cpp/tag/OSReturn //test_ref/cpp/struct/OSReturn //test_ref/cpp/intf/OSReturn //test_ref/doc/anysymbol/OSReturn" machineGenerated="true" --><span class="type">OSReturn</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/postModLoad //test_ref/cpp/clm/OSMetaClass/postModLoad //test_ref/cpp/intfcm/OSMetaClass/postModLoad //test_ref/cpp/intfm/OSMetaClass/postModLoad //test_ref/cpp/func/postModLoad //test_ref/cpp/ftmplt/OSMetaClass/postModLoad //test_ref/cpp/defn/postModLoad //test_ref/cpp/macro/postModLoad //test_ref/doc/anysymbol/postModLoad" machineGenerated="true" --><span class="function">postModLoad</span><!-- /a -->(
	    <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="param">loadHandle</span>); 
END OF OBJECT


OBJECT: modHasInstance (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/bool //test_ref/cpp/tdef/bool //test_ref/cpp/tag/bool //test_ref/cpp/struct/bool //test_ref/cpp/intf/bool //test_ref/doc/anysymbol/bool" machineGenerated="true" --><span class="type">bool</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/modHasInstance //test_ref/cpp/clm/OSMetaClass/modHasInstance //test_ref/cpp/intfcm/OSMetaClass/modHasInstance //test_ref/cpp/intfm/OSMetaClass/modHasInstance //test_ref/cpp/func/modHasInstance //test_ref/cpp/ftmplt/OSMetaClass/modHasInstance //test_ref/cpp/defn/modHasInstance //test_ref/cpp/macro/modHasInstance //test_ref/doc/anysymbol/modHasInstance" machineGenerated="true" --><span class="function">modHasInstance</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">kmodName</span>); 
END OF OBJECT


OBJECT: reportModInstances (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/reportModInstances //test_ref/cpp/clm/OSMetaClass/reportModInstances //test_ref/cpp/intfcm/OSMetaClass/reportModInstances //test_ref/cpp/intfm/OSMetaClass/reportModInstances //test_ref/cpp/func/reportModInstances //test_ref/cpp/ftmplt/OSMetaClass/reportModInstances //test_ref/cpp/defn/reportModInstances //test_ref/cpp/macro/reportModInstances //test_ref/doc/anysymbol/reportModInstances" machineGenerated="true" --><span class="function">reportModInstances</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">kmodName</span>); 
END OF OBJECT


OBJECT: considerUnloads (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/considerUnloads //test_ref/cpp/clm/OSMetaClass/considerUnloads //test_ref/cpp/intfcm/OSMetaClass/considerUnloads //test_ref/cpp/intfm/OSMetaClass/considerUnloads //test_ref/cpp/func/considerUnloads //test_ref/cpp/ftmplt/OSMetaClass/considerUnloads //test_ref/cpp/defn/considerUnloads //test_ref/cpp/macro/considerUnloads //test_ref/doc/anysymbol/considerUnloads" machineGenerated="true" --><span class="function">considerUnloads</span><!-- /a -->(); 
END OF OBJECT


OBJECT: allocClassWithName (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/allocClassWithName //test_ref/cpp/clm/OSMetaClass/allocClassWithName //test_ref/cpp/intfcm/OSMetaClass/allocClassWithName //test_ref/cpp/intfm/OSMetaClass/allocClassWithName //test_ref/cpp/func/allocClassWithName //test_ref/cpp/ftmplt/OSMetaClass/allocClassWithName //test_ref/cpp/defn/allocClassWithName //test_ref/cpp/macro/allocClassWithName //test_ref/doc/anysymbol/allocClassWithName" machineGenerated="true" --><span class="function">allocClassWithName</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><span class="param">name</span>); 
END OF OBJECT


OBJECT: allocClassWithName (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/allocClassWithName //test_ref/cpp/clm/OSMetaClass/allocClassWithName //test_ref/cpp/intfcm/OSMetaClass/allocClassWithName //test_ref/cpp/intfm/OSMetaClass/allocClassWithName //test_ref/cpp/func/allocClassWithName //test_ref/cpp/ftmplt/OSMetaClass/allocClassWithName //test_ref/cpp/defn/allocClassWithName //test_ref/cpp/macro/allocClassWithName //test_ref/doc/anysymbol/allocClassWithName" machineGenerated="true" --><span class="function">allocClassWithName</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSString //test_ref/cpp/tdef/OSString //test_ref/cpp/tag/OSString //test_ref/cpp/struct/OSString //test_ref/cpp/intf/OSString //test_ref/doc/anysymbol/OSString" machineGenerated="true" --><span class="type">OSString</span><!-- /a --> <span class="type">*</span><span class="param">name</span>); 
END OF OBJECT


OBJECT: allocClassWithName (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/allocClassWithName //test_ref/cpp/clm/OSMetaClass/allocClassWithName //test_ref/cpp/intfcm/OSMetaClass/allocClassWithName //test_ref/cpp/intfm/OSMetaClass/allocClassWithName //test_ref/cpp/func/allocClassWithName //test_ref/cpp/ftmplt/OSMetaClass/allocClassWithName //test_ref/cpp/defn/allocClassWithName //test_ref/cpp/macro/allocClassWithName //test_ref/doc/anysymbol/allocClassWithName" machineGenerated="true" --><span class="function">allocClassWithName</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">name</span>); 
END OF OBJECT


OBJECT: checkMetaCastWithName (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/clm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/intfcm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/intfm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/func/checkMetaCastWithName //test_ref/cpp/ftmplt/OSMetaClass/checkMetaCastWithName //test_ref/cpp/defn/checkMetaCastWithName //test_ref/cpp/macro/checkMetaCastWithName //test_ref/doc/anysymbol/checkMetaCastWithName" machineGenerated="true" --><span class="function">checkMetaCastWithName</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><span class="param">name</span>,
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">in</span>); 
END OF OBJECT


OBJECT: checkMetaCastWithName (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/clm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/intfcm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/intfm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/func/checkMetaCastWithName //test_ref/cpp/ftmplt/OSMetaClass/checkMetaCastWithName //test_ref/cpp/defn/checkMetaCastWithName //test_ref/cpp/macro/checkMetaCastWithName //test_ref/doc/anysymbol/checkMetaCastWithName" machineGenerated="true" --><span class="function">checkMetaCastWithName</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSString //test_ref/cpp/tdef/OSString //test_ref/cpp/tag/OSString //test_ref/cpp/struct/OSString //test_ref/cpp/intf/OSString //test_ref/doc/anysymbol/OSString" machineGenerated="true" --><span class="type">OSString</span><!-- /a --> <span class="type">*</span><span class="param">name</span>,
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">in</span>); 
END OF OBJECT


OBJECT: checkMetaCastWithName (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/clm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/intfcm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/intfm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/func/checkMetaCastWithName //test_ref/cpp/ftmplt/OSMetaClass/checkMetaCastWithName //test_ref/cpp/defn/checkMetaCastWithName //test_ref/cpp/macro/checkMetaCastWithName //test_ref/doc/anysymbol/checkMetaCastWithName" machineGenerated="true" --><span class="function">checkMetaCastWithName</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">name</span>,
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">in</span>); 
END OF OBJECT


OBJECT: instanceConstructed (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/instanceConstructed //test_ref/cpp/clm/OSMetaClass/instanceConstructed //test_ref/cpp/intfcm/OSMetaClass/instanceConstructed //test_ref/cpp/intfm/OSMetaClass/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/OSMetaClass/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="function">instanceConstructed</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: instanceDestructed (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/instanceDestructed //test_ref/cpp/clm/OSMetaClass/instanceDestructed //test_ref/cpp/intfcm/OSMetaClass/instanceDestructed //test_ref/cpp/intfm/OSMetaClass/instanceDestructed //test_ref/cpp/func/instanceDestructed //test_ref/cpp/ftmplt/OSMetaClass/instanceDestructed //test_ref/cpp/defn/instanceDestructed //test_ref/cpp/macro/instanceDestructed //test_ref/doc/anysymbol/instanceDestructed" machineGenerated="true" --><span class="function">instanceDestructed</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: checkMetaCast (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/checkMetaCast //test_ref/cpp/clm/OSMetaClass/checkMetaCast //test_ref/cpp/intfcm/OSMetaClass/checkMetaCast //test_ref/cpp/intfm/OSMetaClass/checkMetaCast //test_ref/cpp/func/checkMetaCast //test_ref/cpp/ftmplt/OSMetaClass/checkMetaCast //test_ref/cpp/defn/checkMetaCast //test_ref/cpp/macro/checkMetaCast //test_ref/doc/anysymbol/checkMetaCast" machineGenerated="true" --><span class="function">checkMetaCast</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">check</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: getInstanceCount (HeaderDoc::Function)
	<span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getInstanceCount //test_ref/cpp/clm/OSMetaClass/getInstanceCount //test_ref/cpp/intfcm/OSMetaClass/getInstanceCount //test_ref/cpp/intfm/OSMetaClass/getInstanceCount //test_ref/cpp/func/getInstanceCount //test_ref/cpp/ftmplt/OSMetaClass/getInstanceCount //test_ref/cpp/defn/getInstanceCount //test_ref/cpp/macro/getInstanceCount //test_ref/doc/anysymbol/getInstanceCount" machineGenerated="true" --><span class="function">getInstanceCount</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: getSuperClass (HeaderDoc::Function)
	<span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getSuperClass //test_ref/cpp/clm/OSMetaClass/getSuperClass //test_ref/cpp/intfcm/OSMetaClass/getSuperClass //test_ref/cpp/intfm/OSMetaClass/getSuperClass //test_ref/cpp/func/getSuperClass //test_ref/cpp/ftmplt/OSMetaClass/getSuperClass //test_ref/cpp/defn/getSuperClass //test_ref/cpp/macro/getSuperClass //test_ref/doc/anysymbol/getSuperClass" machineGenerated="true" --><span class="function">getSuperClass</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: getKmodName (HeaderDoc::Function)
	<span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getKmodName //test_ref/cpp/clm/OSMetaClass/getKmodName //test_ref/cpp/intfcm/OSMetaClass/getKmodName //test_ref/cpp/intfm/OSMetaClass/getKmodName //test_ref/cpp/func/getKmodName //test_ref/cpp/ftmplt/OSMetaClass/getKmodName //test_ref/cpp/defn/getKmodName //test_ref/cpp/macro/getKmodName //test_ref/doc/anysymbol/getKmodName" machineGenerated="true" --><span class="function">getKmodName</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: getClassName (HeaderDoc::Function)
	<span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getClassName //test_ref/cpp/clm/OSMetaClass/getClassName //test_ref/cpp/intfcm/OSMetaClass/getClassName //test_ref/cpp/intfm/OSMetaClass/getClassName //test_ref/cpp/func/getClassName //test_ref/cpp/ftmplt/OSMetaClass/getClassName //test_ref/cpp/defn/getClassName //test_ref/cpp/macro/getClassName //test_ref/doc/anysymbol/getClassName" machineGenerated="true" --><span class="function">getClassName</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: getClassSize (HeaderDoc::Function)
	<span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getClassSize //test_ref/cpp/clm/OSMetaClass/getClassSize //test_ref/cpp/intfcm/OSMetaClass/getClassSize //test_ref/cpp/intfm/OSMetaClass/getClassSize //test_ref/cpp/func/getClassSize //test_ref/cpp/ftmplt/OSMetaClass/getClassSize //test_ref/cpp/defn/getClassSize //test_ref/cpp/macro/getClassSize //test_ref/doc/anysymbol/getClassSize" machineGenerated="true" --><span class="function">getClassSize</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: alloc (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="function">alloc</span><!-- /a -->() <span class="keyword">const</span> = <span class="number">0</span>; 
END OF OBJECT


OBJECT: superClassLink (HeaderDoc::Constant)
	<span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/econst/superClassLink //test_ref/cpp/data/OSMetaClass/superClassLink //test_ref/cpp/data/superClassLink //test_ref/cpp/clconst/OSMetaClass/superClassLink " machineGenerated="true" --><span class="var">superClassLink</span><!-- /a -->; 
END OF OBJECT


OBJECT: superClassLink (HeaderDoc::Constant)
	<span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/econst/superClassLink //test_ref/cpp/data/OSMetaClass/superClassLink //test_ref/cpp/data/superClassLink //test_ref/cpp/clconst/OSMetaClass/superClassLink " machineGenerated="true" --><span class="var">superClassLink</span><!-- /a -->; 
END OF OBJECT


OBJECT: className (HeaderDoc::Constant)
	<span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className " machineGenerated="true" --><span class="var">className</span><!-- /a -->; 
END OF OBJECT


OBJECT: reserved (HeaderDoc::Var)
	<!-- a logicalPath="//test_ref/cpp/cl/ExpansionData //test_ref/cpp/tdef/ExpansionData //test_ref/cpp/tag/ExpansionData //test_ref/cpp/struct/ExpansionData //test_ref/cpp/intf/ExpansionData //test_ref/doc/anysymbol/ExpansionData" machineGenerated="true" --><span class="type">ExpansionData</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/econst/reserved //test_ref/cpp/data/OSMetaClass/reserved //test_ref/cpp/data/reserved //test_ref/cpp/clconst/OSMetaClass/reserved " machineGenerated="true" --><span class="var">reserved</span><!-- /a -->; 
END OF OBJECT


OBJECT: classSize (HeaderDoc::Var)
	<span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/econst/classSize //test_ref/cpp/data/OSMetaClass/classSize //test_ref/cpp/data/classSize //test_ref/cpp/clconst/OSMetaClass/classSize " machineGenerated="true" --><span class="var">classSize</span><!-- /a -->; 
END OF OBJECT


OBJECT: instanceCount (HeaderDoc::Var)
	<span class="keyword">mutable</span> <span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/econst/instanceCount //test_ref/cpp/data/OSMetaClass/instanceCount //test_ref/cpp/data/instanceCount //test_ref/cpp/clconst/OSMetaClass/instanceCount " machineGenerated="true" --><span class="var">instanceCount</span><!-- /a -->; 
END OF OBJECT


OBJECT: OSDeclareCommonStructors (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDeclareCommonStructors //test_ref/cpp/tdef/OSDeclareCommonStructors //test_ref/cpp/tag/OSDeclareCommonStructors //test_ref/cpp/struct/OSDeclareCommonStructors //test_ref/cpp/intf/OSDeclareCommonStructors //test_ref/cpp/econst/OSDeclareCommonStructors //test_ref/cpp/data/OSMetaClass/OSDeclareCommonStructors //test_ref/cpp/data/OSDeclareCommonStructors //test_ref/cpp/clconst/OSMetaClass/OSDeclareCommonStructors //test_ref/cpp/instm/OSMetaClass/OSDeclareCommonStructors //test_ref/cpp/clm/OSMetaClass/OSDeclareCommonStructors //test_ref/cpp/intfcm/OSMetaClass/OSDeclareCommonStructors //test_ref/cpp/intfm/OSMetaClass/OSDeclareCommonStructors //test_ref/cpp/func/OSDeclareCommonStructors //test_ref/cpp/ftmplt/OSMetaClass/OSDeclareCommonStructors //test_ref/cpp/defn/OSDeclareCommonStructors //test_ref/cpp/macro/OSDeclareCommonStructors //test_ref/doc/com/intfm/OSMetaClass/OSDeclareCommonStructors //test_ref/doc/anysymbol/OSDeclareCommonStructors" machineGenerated="true" --><span class="preprocessor">OSDeclareCommonStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/OSMetaClass/class //test_ref/cpp/data/class //test_ref/cpp/clconst/OSMetaClass/class //test_ref/cpp/instm/OSMetaClass/class //test_ref/cpp/clm/OSMetaClass/class //test_ref/cpp/intfcm/OSMetaClass/class //test_ref/cpp/intfm/OSMetaClass/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/OSMetaClass/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/OSMetaClass/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <span class="preprocessor">:</span> <span class="preprocessor">public</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">{</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">}</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/friend //test_ref/cpp/tdef/friend //test_ref/cpp/tag/friend //test_ref/cpp/struct/friend //test_ref/cpp/intf/friend //test_ref/cpp/econst/friend //test_ref/cpp/data/OSMetaClass/friend //test_ref/cpp/data/friend //test_ref/cpp/clconst/OSMetaClass/friend //test_ref/cpp/instm/OSMetaClass/friend //test_ref/cpp/clm/OSMetaClass/friend //test_ref/cpp/intfcm/OSMetaClass/friend //test_ref/cpp/intfm/OSMetaClass/friend //test_ref/cpp/func/friend //test_ref/cpp/ftmplt/OSMetaClass/friend //test_ref/cpp/defn/friend //test_ref/cpp/macro/friend //test_ref/doc/com/intfm/OSMetaClass/friend //test_ref/doc/anysymbol/friend" machineGenerated="true" --><span class="preprocessor">friend</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/OSMetaClass/class //test_ref/cpp/data/class //test_ref/cpp/clconst/OSMetaClass/class //test_ref/cpp/instm/OSMetaClass/class //test_ref/cpp/clm/OSMetaClass/class //test_ref/cpp/intfcm/OSMetaClass/class //test_ref/cpp/intfm/OSMetaClass/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/OSMetaClass/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/OSMetaClass/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">protected</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> 
END OF OBJECT


OBJECT: OSDeclareDefaultStructors (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDeclareDefaultStructors //test_ref/cpp/tdef/OSDeclareDefaultStructors //test_ref/cpp/tag/OSDeclareDefaultStructors //test_ref/cpp/struct/OSDeclareDefaultStructors //test_ref/cpp/intf/OSDeclareDefaultStructors //test_ref/cpp/econst/OSDeclareDefaultStructors //test_ref/cpp/data/OSMetaClass/OSDeclareDefaultStructors //test_ref/cpp/data/OSDeclareDefaultStructors //test_ref/cpp/clconst/OSMetaClass/OSDeclareDefaultStructors //test_ref/cpp/instm/OSMetaClass/OSDeclareDefaultStructors //test_ref/cpp/clm/OSMetaClass/OSDeclareDefaultStructors //test_ref/cpp/intfcm/OSMetaClass/OSDeclareDefaultStructors //test_ref/cpp/intfm/OSMetaClass/OSDeclareDefaultStructors //test_ref/cpp/func/OSDeclareDefaultStructors //test_ref/cpp/ftmplt/OSMetaClass/OSDeclareDefaultStructors //test_ref/cpp/defn/OSDeclareDefaultStructors //test_ref/cpp/macro/OSDeclareDefaultStructors //test_ref/doc/com/intfm/OSMetaClass/OSDeclareDefaultStructors //test_ref/doc/anysymbol/OSDeclareDefaultStructors" machineGenerated="true" --><span class="preprocessor">OSDeclareDefaultStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/OSMetaClass/class //test_ref/cpp/data/class //test_ref/cpp/clconst/OSMetaClass/class //test_ref/cpp/instm/OSMetaClass/class //test_ref/cpp/clm/OSMetaClass/class //test_ref/cpp/intfcm/OSMetaClass/class //test_ref/cpp/intfm/OSMetaClass/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/OSMetaClass/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/OSMetaClass/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <span class="preprocessor">:</span> <span class="preprocessor">public</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">{</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">}</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/friend //test_ref/cpp/tdef/friend //test_ref/cpp/tag/friend //test_ref/cpp/struct/friend //test_ref/cpp/intf/friend //test_ref/cpp/econst/friend //test_ref/cpp/data/OSMetaClass/friend //test_ref/cpp/data/friend //test_ref/cpp/clconst/OSMetaClass/friend //test_ref/cpp/instm/OSMetaClass/friend //test_ref/cpp/clm/OSMetaClass/friend //test_ref/cpp/intfcm/OSMetaClass/friend //test_ref/cpp/intfm/OSMetaClass/friend //test_ref/cpp/func/friend //test_ref/cpp/ftmplt/OSMetaClass/friend //test_ref/cpp/defn/friend //test_ref/cpp/macro/friend //test_ref/doc/com/intfm/OSMetaClass/friend //test_ref/doc/anysymbol/friend" machineGenerated="true" --><span class="preprocessor">friend</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/OSMetaClass/class //test_ref/cpp/data/class //test_ref/cpp/clconst/OSMetaClass/class //test_ref/cpp/instm/OSMetaClass/class //test_ref/cpp/clm/OSMetaClass/class //test_ref/cpp/intfcm/OSMetaClass/class //test_ref/cpp/intfm/OSMetaClass/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/OSMetaClass/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/OSMetaClass/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">protected</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">protected</span><span class="preprocessor">:</span> 
END OF OBJECT


OBJECT: OSDeclareAbstractStructors (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDeclareAbstractStructors //test_ref/cpp/tdef/OSDeclareAbstractStructors //test_ref/cpp/tag/OSDeclareAbstractStructors //test_ref/cpp/struct/OSDeclareAbstractStructors //test_ref/cpp/intf/OSDeclareAbstractStructors //test_ref/cpp/econst/OSDeclareAbstractStructors //test_ref/cpp/data/OSMetaClass/OSDeclareAbstractStructors //test_ref/cpp/data/OSDeclareAbstractStructors //test_ref/cpp/clconst/OSMetaClass/OSDeclareAbstractStructors //test_ref/cpp/instm/OSMetaClass/OSDeclareAbstractStructors //test_ref/cpp/clm/OSMetaClass/OSDeclareAbstractStructors //test_ref/cpp/intfcm/OSMetaClass/OSDeclareAbstractStructors //test_ref/cpp/intfm/OSMetaClass/OSDeclareAbstractStructors //test_ref/cpp/func/OSDeclareAbstractStructors //test_ref/cpp/ftmplt/OSMetaClass/OSDeclareAbstractStructors //test_ref/cpp/defn/OSDeclareAbstractStructors //test_ref/cpp/macro/OSDeclareAbstractStructors //test_ref/doc/com/intfm/OSMetaClass/OSDeclareAbstractStructors //test_ref/doc/anysymbol/OSDeclareAbstractStructors" machineGenerated="true" --><span class="preprocessor">OSDeclareAbstractStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/OSMetaClass/class //test_ref/cpp/data/class //test_ref/cpp/clconst/OSMetaClass/class //test_ref/cpp/instm/OSMetaClass/class //test_ref/cpp/clm/OSMetaClass/class //test_ref/cpp/intfcm/OSMetaClass/class //test_ref/cpp/intfm/OSMetaClass/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/OSMetaClass/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/OSMetaClass/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <span class="preprocessor">:</span> <span class="preprocessor">public</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">{</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">}</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/friend //test_ref/cpp/tdef/friend //test_ref/cpp/tag/friend //test_ref/cpp/struct/friend //test_ref/cpp/intf/friend //test_ref/cpp/econst/friend //test_ref/cpp/data/OSMetaClass/friend //test_ref/cpp/data/friend //test_ref/cpp/clconst/OSMetaClass/friend //test_ref/cpp/instm/OSMetaClass/friend //test_ref/cpp/clm/OSMetaClass/friend //test_ref/cpp/intfcm/OSMetaClass/friend //test_ref/cpp/intfm/OSMetaClass/friend //test_ref/cpp/func/friend //test_ref/cpp/ftmplt/OSMetaClass/friend //test_ref/cpp/defn/friend //test_ref/cpp/macro/friend //test_ref/doc/com/intfm/OSMetaClass/friend //test_ref/doc/anysymbol/friend" machineGenerated="true" --><span class="preprocessor">friend</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/OSMetaClass/class //test_ref/cpp/data/class //test_ref/cpp/clconst/OSMetaClass/class //test_ref/cpp/instm/OSMetaClass/class //test_ref/cpp/clm/OSMetaClass/class //test_ref/cpp/intfcm/OSMetaClass/class //test_ref/cpp/intfm/OSMetaClass/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/OSMetaClass/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/OSMetaClass/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">protected</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="comment"><span class="comment">/*</span> <span class="comment">Make primary constructor private in abstract </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">protected</span><span class="preprocessor">:</span> 
END OF OBJECT


OBJECT: OSDefineMetaClassWithInit (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassWithInit //test_ref/cpp/tdef/OSDefineMetaClassWithInit //test_ref/cpp/tag/OSDefineMetaClassWithInit //test_ref/cpp/struct/OSDefineMetaClassWithInit //test_ref/cpp/intf/OSDefineMetaClassWithInit //test_ref/cpp/econst/OSDefineMetaClassWithInit //test_ref/cpp/data/OSMetaClass/OSDefineMetaClassWithInit //test_ref/cpp/data/OSDefineMetaClassWithInit //test_ref/cpp/clconst/OSMetaClass/OSDefineMetaClassWithInit //test_ref/cpp/instm/OSMetaClass/OSDefineMetaClassWithInit //test_ref/cpp/clm/OSMetaClass/OSDefineMetaClassWithInit //test_ref/cpp/intfcm/OSMetaClass/OSDefineMetaClassWithInit //test_ref/cpp/intfm/OSMetaClass/OSDefineMetaClassWithInit //test_ref/cpp/func/OSDefineMetaClassWithInit //test_ref/cpp/ftmplt/OSMetaClass/OSDefineMetaClassWithInit //test_ref/cpp/defn/OSDefineMetaClassWithInit //test_ref/cpp/macro/OSDefineMetaClassWithInit //test_ref/doc/com/intfm/OSMetaClass/OSDefineMetaClassWithInit //test_ref/doc/anysymbol/OSDefineMetaClassWithInit" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassWithInit</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/OSMetaClass/init //test_ref/cpp/data/init //test_ref/cpp/clconst/OSMetaClass/init //test_ref/cpp/instm/OSMetaClass/init //test_ref/cpp/clm/OSMetaClass/init //test_ref/cpp/intfcm/OSMetaClass/init //test_ref/cpp/intfm/OSMetaClass/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/OSMetaClass/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/OSMetaClass/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">#</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/OSMetaClass/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/OSMetaClass/sizeof //test_ref/cpp/instm/OSMetaClass/sizeof //test_ref/cpp/clm/OSMetaClass/sizeof //test_ref/cpp/intfcm/OSMetaClass/sizeof //test_ref/cpp/intfm/OSMetaClass/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/OSMetaClass/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/OSMetaClass/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/OSMetaClass/init //test_ref/cpp/data/init //test_ref/cpp/clconst/OSMetaClass/init //test_ref/cpp/instm/OSMetaClass/init //test_ref/cpp/clm/OSMetaClass/init //test_ref/cpp/intfcm/OSMetaClass/init //test_ref/cpp/intfm/OSMetaClass/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/OSMetaClass/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/OSMetaClass/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSDefineAbstractStructors (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineAbstractStructors //test_ref/cpp/tdef/OSDefineAbstractStructors //test_ref/cpp/tag/OSDefineAbstractStructors //test_ref/cpp/struct/OSDefineAbstractStructors //test_ref/cpp/intf/OSDefineAbstractStructors //test_ref/cpp/econst/OSDefineAbstractStructors //test_ref/cpp/data/OSMetaClass/OSDefineAbstractStructors //test_ref/cpp/data/OSDefineAbstractStructors //test_ref/cpp/clconst/OSMetaClass/OSDefineAbstractStructors //test_ref/cpp/instm/OSMetaClass/OSDefineAbstractStructors //test_ref/cpp/clm/OSMetaClass/OSDefineAbstractStructors //test_ref/cpp/intfcm/OSMetaClass/OSDefineAbstractStructors //test_ref/cpp/intfm/OSMetaClass/OSDefineAbstractStructors //test_ref/cpp/func/OSDefineAbstractStructors //test_ref/cpp/ftmplt/OSMetaClass/OSDefineAbstractStructors //test_ref/cpp/defn/OSDefineAbstractStructors //test_ref/cpp/macro/OSDefineAbstractStructors //test_ref/doc/com/intfm/OSMetaClass/OSDefineAbstractStructors //test_ref/doc/anysymbol/OSDefineAbstractStructors" machineGenerated="true" --><span class="preprocessor">OSDefineAbstractStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">0</span><span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSDefineDefaultStructors (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineDefaultStructors //test_ref/cpp/tdef/OSDefineDefaultStructors //test_ref/cpp/tag/OSDefineDefaultStructors //test_ref/cpp/struct/OSDefineDefaultStructors //test_ref/cpp/intf/OSDefineDefaultStructors //test_ref/cpp/econst/OSDefineDefaultStructors //test_ref/cpp/data/OSMetaClass/OSDefineDefaultStructors //test_ref/cpp/data/OSDefineDefaultStructors //test_ref/cpp/clconst/OSMetaClass/OSDefineDefaultStructors //test_ref/cpp/instm/OSMetaClass/OSDefineDefaultStructors //test_ref/cpp/clm/OSMetaClass/OSDefineDefaultStructors //test_ref/cpp/intfcm/OSMetaClass/OSDefineDefaultStructors //test_ref/cpp/intfm/OSMetaClass/OSDefineDefaultStructors //test_ref/cpp/func/OSDefineDefaultStructors //test_ref/cpp/ftmplt/OSMetaClass/OSDefineDefaultStructors //test_ref/cpp/defn/OSDefineDefaultStructors //test_ref/cpp/macro/OSDefineDefaultStructors //test_ref/doc/com/intfm/OSMetaClass/OSDefineDefaultStructors //test_ref/doc/anysymbol/OSDefineDefaultStructors" machineGenerated="true" --><span class="preprocessor">OSDefineDefaultStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/new //test_ref/cpp/tdef/new //test_ref/cpp/tag/new //test_ref/cpp/struct/new //test_ref/cpp/intf/new //test_ref/cpp/econst/new //test_ref/cpp/data/OSMetaClass/new //test_ref/cpp/data/new //test_ref/cpp/clconst/OSMetaClass/new //test_ref/cpp/instm/OSMetaClass/new //test_ref/cpp/clm/OSMetaClass/new //test_ref/cpp/intfcm/OSMetaClass/new //test_ref/cpp/intfm/OSMetaClass/new //test_ref/cpp/func/new //test_ref/cpp/ftmplt/OSMetaClass/new //test_ref/cpp/defn/new //test_ref/cpp/macro/new //test_ref/doc/com/intfm/OSMetaClass/new //test_ref/doc/anysymbol/new" machineGenerated="true" --><span class="preprocessor">new</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">.</span><!-- a logicalPath="//test_ref/cpp/cl/instanceConstructed //test_ref/cpp/tdef/instanceConstructed //test_ref/cpp/tag/instanceConstructed //test_ref/cpp/struct/instanceConstructed //test_ref/cpp/intf/instanceConstructed //test_ref/cpp/econst/instanceConstructed //test_ref/cpp/data/OSMetaClass/instanceConstructed //test_ref/cpp/data/instanceConstructed //test_ref/cpp/clconst/OSMetaClass/instanceConstructed //test_ref/cpp/instm/OSMetaClass/instanceConstructed //test_ref/cpp/clm/OSMetaClass/instanceConstructed //test_ref/cpp/intfcm/OSMetaClass/instanceConstructed //test_ref/cpp/intfm/OSMetaClass/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/OSMetaClass/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/com/intfm/OSMetaClass/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="preprocessor">instanceConstructed</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSDefineMetaClassAndAbstractStructorsWithInit (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/tdef/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/tag/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/struct/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/intf/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/econst/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/data/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/data/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/clconst/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/instm/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/clm/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/intfcm/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/intfm/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/func/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/ftmplt/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/defn/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/macro/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/doc/com/intfm/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/doc/anysymbol/OSDefineMetaClassAndAbstractStructorsWithInit" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndAbstractStructorsWithInit</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/OSMetaClass/init //test_ref/cpp/data/init //test_ref/cpp/clconst/OSMetaClass/init //test_ref/cpp/instm/OSMetaClass/init //test_ref/cpp/clm/OSMetaClass/init //test_ref/cpp/intfcm/OSMetaClass/init //test_ref/cpp/intfm/OSMetaClass/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/OSMetaClass/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/OSMetaClass/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/OSMetaClass/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/OSMetaClass/sizeof //test_ref/cpp/instm/OSMetaClass/sizeof //test_ref/cpp/clm/OSMetaClass/sizeof //test_ref/cpp/intfcm/OSMetaClass/sizeof //test_ref/cpp/intfm/OSMetaClass/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/OSMetaClass/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/OSMetaClass/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/OSMetaClass/init //test_ref/cpp/data/init //test_ref/cpp/clconst/OSMetaClass/init //test_ref/cpp/instm/OSMetaClass/init //test_ref/cpp/clm/OSMetaClass/init //test_ref/cpp/intfcm/OSMetaClass/init //test_ref/cpp/intfm/OSMetaClass/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/OSMetaClass/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/OSMetaClass/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSDefineMetaClassAndStructorsWithInit (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/tdef/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/tag/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/struct/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/intf/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/econst/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/data/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/data/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/clconst/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/instm/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/clm/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/intfcm/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/intfm/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/func/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/ftmplt/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/defn/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/macro/OSDefineMetaClassAndStructorsWithInit //test_ref/doc/com/intfm/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/doc/anysymbol/OSDefineMetaClassAndStructorsWithInit" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndStructorsWithInit</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/OSMetaClass/init //test_ref/cpp/data/init //test_ref/cpp/clconst/OSMetaClass/init //test_ref/cpp/instm/OSMetaClass/init //test_ref/cpp/clm/OSMetaClass/init //test_ref/cpp/intfcm/OSMetaClass/init //test_ref/cpp/intfm/OSMetaClass/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/OSMetaClass/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/OSMetaClass/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/OSMetaClass/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/OSMetaClass/sizeof //test_ref/cpp/instm/OSMetaClass/sizeof //test_ref/cpp/clm/OSMetaClass/sizeof //test_ref/cpp/intfcm/OSMetaClass/sizeof //test_ref/cpp/intfm/OSMetaClass/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/OSMetaClass/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/OSMetaClass/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/OSMetaClass/init //test_ref/cpp/data/init //test_ref/cpp/clconst/OSMetaClass/init //test_ref/cpp/instm/OSMetaClass/init //test_ref/cpp/clm/OSMetaClass/init //test_ref/cpp/intfcm/OSMetaClass/init //test_ref/cpp/intfm/OSMetaClass/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/OSMetaClass/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/OSMetaClass/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/new //test_ref/cpp/tdef/new //test_ref/cpp/tag/new //test_ref/cpp/struct/new //test_ref/cpp/intf/new //test_ref/cpp/econst/new //test_ref/cpp/data/OSMetaClass/new //test_ref/cpp/data/new //test_ref/cpp/clconst/OSMetaClass/new //test_ref/cpp/instm/OSMetaClass/new //test_ref/cpp/clm/OSMetaClass/new //test_ref/cpp/intfcm/OSMetaClass/new //test_ref/cpp/intfm/OSMetaClass/new //test_ref/cpp/func/new //test_ref/cpp/ftmplt/OSMetaClass/new //test_ref/cpp/defn/new //test_ref/cpp/macro/new //test_ref/doc/com/intfm/OSMetaClass/new //test_ref/doc/anysymbol/new" machineGenerated="true" --><span class="preprocessor">new</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">.</span><!-- a logicalPath="//test_ref/cpp/cl/instanceConstructed //test_ref/cpp/tdef/instanceConstructed //test_ref/cpp/tag/instanceConstructed //test_ref/cpp/struct/instanceConstructed //test_ref/cpp/intf/instanceConstructed //test_ref/cpp/econst/instanceConstructed //test_ref/cpp/data/OSMetaClass/instanceConstructed //test_ref/cpp/data/instanceConstructed //test_ref/cpp/clconst/OSMetaClass/instanceConstructed //test_ref/cpp/instm/OSMetaClass/instanceConstructed //test_ref/cpp/clm/OSMetaClass/instanceConstructed //test_ref/cpp/intfcm/OSMetaClass/instanceConstructed //test_ref/cpp/intfm/OSMetaClass/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/OSMetaClass/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/com/intfm/OSMetaClass/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="preprocessor">instanceConstructed</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSDefineMetaClass (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClass //test_ref/cpp/tdef/OSDefineMetaClass //test_ref/cpp/tag/OSDefineMetaClass //test_ref/cpp/struct/OSDefineMetaClass //test_ref/cpp/intf/OSDefineMetaClass //test_ref/cpp/econst/OSDefineMetaClass //test_ref/cpp/data/OSMetaClass/OSDefineMetaClass //test_ref/cpp/data/OSDefineMetaClass //test_ref/cpp/clconst/OSMetaClass/OSDefineMetaClass //test_ref/cpp/instm/OSMetaClass/OSDefineMetaClass //test_ref/cpp/clm/OSMetaClass/OSDefineMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSDefineMetaClass //test_ref/cpp/intfm/OSMetaClass/OSDefineMetaClass //test_ref/cpp/func/OSDefineMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSDefineMetaClass //test_ref/cpp/defn/OSDefineMetaClass //test_ref/cpp/macro/OSDefineMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSDefineMetaClass //test_ref/doc/anysymbol/OSDefineMetaClass" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClass</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/OSMetaClass/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/OSMetaClass/sizeof //test_ref/cpp/instm/OSMetaClass/sizeof //test_ref/cpp/clm/OSMetaClass/sizeof //test_ref/cpp/intfcm/OSMetaClass/sizeof //test_ref/cpp/intfm/OSMetaClass/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/OSMetaClass/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/OSMetaClass/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSDefineMetaClassAndStructors (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndStructors //test_ref/cpp/tdef/OSDefineMetaClassAndStructors //test_ref/cpp/tag/OSDefineMetaClassAndStructors //test_ref/cpp/struct/OSDefineMetaClassAndStructors //test_ref/cpp/intf/OSDefineMetaClassAndStructors //test_ref/cpp/econst/OSDefineMetaClassAndStructors //test_ref/cpp/data/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/cpp/data/OSDefineMetaClassAndStructors //test_ref/cpp/clconst/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/cpp/instm/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/cpp/clm/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/cpp/intfcm/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/cpp/intfm/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/cpp/func/OSDefineMetaClassAndStructors //test_ref/cpp/ftmplt/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/cpp/defn/OSDefineMetaClassAndStructors //test_ref/cpp/macro/OSDefineMetaClassAndStructors //test_ref/doc/com/intfm/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/doc/anysymbol/OSDefineMetaClassAndStructors" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/OSMetaClass/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/OSMetaClass/sizeof //test_ref/cpp/instm/OSMetaClass/sizeof //test_ref/cpp/clm/OSMetaClass/sizeof //test_ref/cpp/intfcm/OSMetaClass/sizeof //test_ref/cpp/intfm/OSMetaClass/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/OSMetaClass/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/OSMetaClass/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/new //test_ref/cpp/tdef/new //test_ref/cpp/tag/new //test_ref/cpp/struct/new //test_ref/cpp/intf/new //test_ref/cpp/econst/new //test_ref/cpp/data/OSMetaClass/new //test_ref/cpp/data/new //test_ref/cpp/clconst/OSMetaClass/new //test_ref/cpp/instm/OSMetaClass/new //test_ref/cpp/clm/OSMetaClass/new //test_ref/cpp/intfcm/OSMetaClass/new //test_ref/cpp/intfm/OSMetaClass/new //test_ref/cpp/func/new //test_ref/cpp/ftmplt/OSMetaClass/new //test_ref/cpp/defn/new //test_ref/cpp/macro/new //test_ref/doc/com/intfm/OSMetaClass/new //test_ref/doc/anysymbol/new" machineGenerated="true" --><span class="preprocessor">new</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">.</span><!-- a logicalPath="//test_ref/cpp/cl/instanceConstructed //test_ref/cpp/tdef/instanceConstructed //test_ref/cpp/tag/instanceConstructed //test_ref/cpp/struct/instanceConstructed //test_ref/cpp/intf/instanceConstructed //test_ref/cpp/econst/instanceConstructed //test_ref/cpp/data/OSMetaClass/instanceConstructed //test_ref/cpp/data/instanceConstructed //test_ref/cpp/clconst/OSMetaClass/instanceConstructed //test_ref/cpp/instm/OSMetaClass/instanceConstructed //test_ref/cpp/clm/OSMetaClass/instanceConstructed //test_ref/cpp/intfcm/OSMetaClass/instanceConstructed //test_ref/cpp/intfm/OSMetaClass/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/OSMetaClass/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/com/intfm/OSMetaClass/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="preprocessor">instanceConstructed</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSDefineMetaClassAndAbstractStructors (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/tdef/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/tag/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/struct/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/intf/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/econst/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/data/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/data/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/clconst/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/instm/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/clm/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/intfcm/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/intfm/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/func/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/ftmplt/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/defn/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/macro/OSDefineMetaClassAndAbstractStructors //test_ref/doc/com/intfm/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/doc/anysymbol/OSDefineMetaClassAndAbstractStructors" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndAbstractStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/OSMetaClass/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/OSMetaClass/sizeof //test_ref/cpp/instm/OSMetaClass/sizeof //test_ref/cpp/clm/OSMetaClass/sizeof //test_ref/cpp/intfcm/OSMetaClass/sizeof //test_ref/cpp/intfm/OSMetaClass/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/OSMetaClass/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/OSMetaClass/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT



$4370502|-=: TOP LEVEL COMMENT PARSE VALUES :=-
inHeader: 0
inClass: 1
inInterface: 0
inCPPHeader: 0
inOCCHeader: 0
inPerlScript: 0
inShellScript: 0
inPHPScript: 0
inJavaSource: 0
inFunctionGroup: 0
inGroup: 0
inFunction: 0
inPDefine: 0
inTypedef: 0
inUnion: 0
inStruct: 0
inConstant: 0
inVar: 0
inEnum: 0
inMethod: 0
inAvailabilityMacro: 0
inUnknown: 0
classType: unknown
inputCounter: 0
blockOffset: 0
fullpath: /test_suite_bogus_path/class_5.test
-=: BLOCKPARSE PARSER STATE KEYS :=-
$parserState->{FULLPATH} => /test_suite_bogus_path/class_5.test
$parserState->{ISFORWARDDECLARATION} => 0
$parserState->{NEXTTOKENNOCPP} => 0
$parserState->{availability} => 
$parserState->{backslashcount} => 0
$parserState->{basetype} => 
$parserState->{bracePending} => 0
$parserState->{callbackIsTypedef} => 0
$parserState->{callbackName} => 
$parserState->{callbackNamePending} => -1
$parserState->{categoryClass} => 
$parserState->{classNameFound} => 1
$parserState->{classtype} => class
$parserState->{forceClassDone} => 1
$parserState->{forceClassName} => OSMetaClass
$parserState->{forceClassSuper} =>  private OSMetaClassBase 
$parserState->{freezeStack} => ARRAY(OBJID)
$parserState->{freezereturn} => 1
$parserState->{frozensodname} => 
$parserState->{functionReturnsCallback} => 0
$parserState->{hollow} => HeaderDoc::ParseTree=HASH(OBJID)
$parserState->{inBrackets} => 0
$parserState->{inChar} => 0
$parserState->{inClass} => 1
$parserState->{inComment} => 0
$parserState->{inInlineComment} => 0
$parserState->{inMacro} => 0
$parserState->{inMacroLine} => 0
$parserState->{inOperator} => 0
$parserState->{inPrivateParamTypes} => 0
$parserState->{inString} => 0
$parserState->{inTemplate} => 0
$parserState->{initbsCount} => 0
$parserState->{inputCounter} => 268
$parserState->{kr_c_function} => 0
$parserState->{kr_c_name} => 
$parserState->{lang} => C
$parserState->{lastTreeNode} => HeaderDoc::ParseTree=HASH(OBJID)
$parserState->{lastsymbol} => ;
$parserState->{macroNoTrunc} => 1
$parserState->{name} => 
$parserState->{namePending} => 0
$parserState->{noInsert} => 0
$parserState->{occmethod} => 0
$parserState->{occmethodname} => 
$parserState->{occparmlabelfound} => 4
$parserState->{onlyComments} => 0
$parserState->{parsedParamAtBrace} => ARRAY(OBJID)
$parserState->{parsedParamList} => ARRAY(OBJID)
$parserState->{parsedParamParse} => 1
$parserState->{parsedParamStateAtBrace} => ARRAY(OBJID)
$parserState->{posstypes} => 
$parserState->{posstypesPending} => 0
$parserState->{pplStack} => ARRAY(OBJID)
$parserState->{preEqualsSymbol} => 
$parserState->{preTemplateSymbol} => 
$parserState->{preclasssodtype} => class
$parserState->{prekeywordsodname} => 
$parserState->{prekeywordsodtype} => 
$parserState->{returntype} => class OSMetaClass : private OSMetaClassBase  
$parserState->{seenBraces} => 0
$parserState->{seenMacroPart} => 0
$parserState->{seenTilde} => 0
$parserState->{simpleTDcontents} => 
$parserState->{simpleTypedef} => 0
$parserState->{sodclass} => class
$parserState->{sodname} => OSMetaClassBase
$parserState->{sodtype} =>  private
$parserState->{sodtypeclasstoken} => class
$parserState->{stackFrozen} => 0
$parserState->{startOfDec} => 1
$parserState->{storeDec} => 
$parserState->{sublang} => C
$parserState->{temponlyComments} => 0
$parserState->{treePopTwo} => 0
$parserState->{value} => 
$parserState->{valuepending} => 0
-=: BLOCKPARSE RETURN VALUES :=-
newcount: 268
typelist: class
namelist: OSMetaClass
posstypes:   OSMetaClassBase 
value: 
returntype: private
pridec: 
simpleTDcontents: 
bpavail: 
blockOffset: 124
conformsToList: 
functionContents: 
extendsClass: 
implementsClass: 
-=: LIST OF PARSED PARAMETERS :=-
-=: DUMP OF PARSE TREE :=-
+---class
+--- 
+---OSMetaClass
+--- 
+---:
+--- 
+---private
+--- 
+---OSMetaClassBase
+---[ NEWLINE ]
+---{
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---private
|   +---:
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Can never be allocated must be created at compile time
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---operator
|   +--- 
|   +---new
|   +---(
|   |   +---size_t
|   |   +--- 
|   |   +---size
|   |   +---)
|   +---;
|   +--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-struct (HAS STATE)
|   +--- 
|   +---ExpansionData
|   +--- 
|   +---{
|   |   +--- 
|   |   +---}
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var reserved Reserved for future use.  (Internal use only)  
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-ExpansionData (HAS STATE)
|   +--- 
|   +---*
|   +---reserved
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var superClass Handle to the superclass' meta class. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---superClassLink
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var className OSSymbol of the class' name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---className
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var classSize How big is a single instancde of this class. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-unsigned (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---classSize
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-mutable (HAS STATE)
|   +--- 
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---instanceCount
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSMetaClass
|   |   +---
@abstract Private the default constructor 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-OSMetaClass (HAS STATE)
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Called by postModLoad
|   |   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function logError
|   |   +---
@abstract Given an error code log an error string using printf 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---logError
|   +---(
|   |   +---OSReturn
|   |   +--- 
|   |   +---result
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---public
|   +---:
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getMetaClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system
|   |   +---
@param name Name of the desired class's meta-class. 
|   |   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---getMetaClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSSymbol
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---protected
|   +---:
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function retain
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---retain
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---release
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---
@param when ignored. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---release
|   +---(
|   |   +---int
|   |   +--- 
|   |   +---when
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function taggedRetain
|   |   +---
@abstract Retain a tagged reference in this object.
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---taggedRetain
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---tag
|   |   +--- 
|   |   +---=
|   |   +--- 
|   |   +---0
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Release a tagged reference to this object
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---taggedRelease
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---tag
|   |   +--- 
|   |   +---=
|   |   +--- 
|   |   +---0
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Release a tagged reference to this object
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---taggedRelease
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---tag
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---int
|   |   +--- 
|   |   +---when
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getRetainCount
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---getRetainCount
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSMetaClass
|   |   +---
@abstract Constructor for OSMetaClass objects
|   |   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   |   +---
@param inClassName cString of the name of the class this meta-class represents.
|   |   +---
@param inSuperClassName cString of the name of the super class.
|   |   +---
@param inClassSize sizeof the class. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-OSMetaClass (HAS STATE)
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---inClassName
|   |   +---,
|   |   +---[ NEWLINE ]
|   |   +---                
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---inSuperClass
|   |   +---,
|   |   +---[ NEWLINE ]
|   |   +---                
|   |   +---unsigned
|   |   +--- 
|   |   +---int
|   |   +--- 
|   |   +---inClassSize
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function ~OSMetaClass
|   |   +---
@abstract Destructor for OSMetaClass objects
|   |   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---~
|   +---OSMetaClass
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   |   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---statically at compile time, don't accidently try to free them.
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---operator
|   +--- 
|   +---delete
|   +---(
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---,
|   |   +--- 
|   |   +---size_t
|   |   +---)
|   +--- 
|   +---;
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---public
|   +---:
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function preModLoad
|   |   +---
@abstract Prepare the runtime type system for the load of a module.
|   |   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   |   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   |   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---preModLoad
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---kmodName
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkModLoad
|   |   +---
@abstract Check if the current load attempt is still OK.
|   |   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   |   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---bool
|   +--- 
|   +---checkModLoad
|   +---(
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---loadHandle
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function postModLoad
|   |   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   |   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   |   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   |   +---
@result Error code of the first error encountered. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSReturn
|   +--- 
|   +---postModLoad
|   +---(
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---loadHandle
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function modHasInstance
|   |   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   |   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   |   +---
@param kmodName cString of the kernel module name.
|   |   +---
@result true if there are any current instances of any class in the module.
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---bool
|   +--- 
|   +---modHasInstance
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---kmodName
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function reportModInstances
|   |   +---
@abstract Log any object that has instances in a module.
|   |   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   |   +---
@param kmodName cString of the kernel module name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---reportModInstances
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---kmodName
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function considerUnloads
|   |   +---
@abstract Schedule module unloading.
|   |   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---considerUnloads
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function allocClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   |   +---
@param name Name of the desired class. 
|   |   +---
@result pointer to an new object, 0 if not found or so memory. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---allocClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSSymbol
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function allocClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   |   +---
@param name Name of the desired class. 
|   |   +---
@result pointer to an new object, 0 if not found or so memory. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---allocClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSString
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function allocClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   |   +---
@param name Name of the desired class. 
|   |   +---
@result pointer to an new object, 0 if not found or so memory. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---allocClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCastWithName
|   |   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   |   +---
@param name Name of the desired class or super class. 
|   |   +---
@param in object to be introspected. 
|   |   +---
@result in parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---[ NEWLINE ]
|   +---        
|   +---checkMetaCastWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSSymbol
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---in
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCastWithName
|   |   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   |   +---
@param name Name of the desired class or super class.
|   |   +---
@param in object to be introspected.
|   |   +---
@result in parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---[ NEWLINE ]
|   +---        
|   +---checkMetaCastWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSString
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---in
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCastWithName
|   |   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   |   +---
@param name Name of the desired class or super class.
|   |   +---
@param in object to be introspected.
|   |   +---
@result in parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---[ NEWLINE ]
|   +---        
|   +---checkMetaCastWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---in
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function instanceConstructed
|   |   +---
@abstract Counts the instances of the class behind this metaclass.
|   |   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---instanceConstructed
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function instanceDestructed
|   |   +---
@abstract Removes one instance of the class behind this metaclass.
|   |   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---instanceDestructed
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCast
|   |   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   |   +---
@param check Pointer of object to introspect.
|   |   +---
@result check parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-OSMetaClassBase (HAS STATE)
|   +--- 
|   +---*
|   +---checkMetaCast
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---check
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getInstanceCount
|   |   +---
@abstract How many instances of the class have been created.
|   |   +---
@result Count of the number of instances. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-unsigned (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---getInstanceCount
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getSuperClass
|   |   +---
@abstract 'Get'ter for the super class.
|   |   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---getSuperClass
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getKmodName
|   |   +---
@abstract 'Get'ter for the name of the kmod.
|   |   +---
@result OSSymbol representing the kmod name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---        
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---getKmodName
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getClassName
|   |   +---
@abstract 'Get'ter for class name.
|   |   +---
@result cString of the class name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---getClassName
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getClassSize
|   |   +---
@abstract 'Get'ter for sizeof(class).
|   |   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-unsigned (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---getClassSize
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function alloc
|   |   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   |   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   |   +---
@result Pointer to a new object with a retain count of 1. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDeclareCommonStructors
|   |   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDeclareCommonStructors
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---private
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---superClass
|   |   +---;
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---metaClass
|   |   +---;
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---MetaClass
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---public
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---{
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---public
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---virtual
|   |   +--- 
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---}
|   |   +--- 
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---friend
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---)
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDeclareDefaultStructors
|   |   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   |   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   |   +---
@param className Name of class. NO QUOTES. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDeclareDefaultStructors
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---         
|   |   +---private
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---superClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---metaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---MetaClass
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---public
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---{
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---virtual
|   |   +--- 
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---}
|   |   +--- 
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---friend
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---)
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDeclareAbstractStructors
|   |   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   |   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   |   +---
@param className Name of class. NO QUOTES. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDeclareAbstractStructors
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---         
|   |   +---private
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---superClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---metaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---MetaClass
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---public
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---{
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---virtual
|   |   +--- 
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---}
|   |   +--- 
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---friend
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---)
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---private
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Make primary constructor private in abstract 
|   |   |   +---*/
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassWithInit
|   |   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   |   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassWithInit
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---,
|   |   +--- 
|   |   +---init
|   |   +---)
|   |   +---        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +--- 
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---#
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---init
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineAbstractStructors
|   |   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineAbstractStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---0
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineDefaultStructors
|   |   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineDefaultStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---new
|   |   +--- 
|   |   +---className
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---&
|   |   +---gMetaClass
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---gMetaClass
|   |   +---.
|   |   +---instanceConstructed
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   |   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   |   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---,
|   |   +--- 
|   |   +---init
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---  
|   |   +---init
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndStructorsWithInit
|   |   +---
@abstract See OSDefineMetaClassAndStructors
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   |   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndStructorsWithInit
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---,
|   |   +--- 
|   |   +---init
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---  
|   |   +---init
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---new
|   |   +--- 
|   |   +---className
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---&
|   |   +---gMetaClass
|   |   +---)
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---gMetaClass
|   |   +---.
|   |   +---instanceConstructed
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +--- 
|   |   +---Helpers 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClass
|   |   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClass
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---  
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndStructors
|   |   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---   
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---   
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---new
|   |   +--- 
|   |   +---className
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---:
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---&
|   |   +---gMetaClass
|   |   +---)
|   |   +---                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---gMetaClass
|   |   +---.
|   |   +---instanceConstructed
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndAbstractStructors
|   |   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndAbstractStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---   
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---   
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Dynamic vtable patchup support routines and types
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---reservedCalled
|   +---(
|   |   +---int
|   |   +--- 
|   |   +---ind
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDeclareReservedUnused
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---private
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---APPLE_KEXT_PAD_METHOD
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---_RESERVED
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---classname
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---index
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDeclareReservedUsed
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDefineReservedUnused
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---void
|   |   +--- 
|   |   +---classname
|   |   +--- 
|   |   +---::
|   |   +---_RESERVED
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---classname
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---index
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---{
|   |   +--- 
|   |   +---APPLE_KEXT_PAD_IMPL
|   |   +---(
|   |   +---index
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDefineReservedUsed
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---IOKit debug internal routines.
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---printInstanceCounts
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---serializeClassDictionary
|   +---(
|   |   +---OSDictionary
|   |   +--- 
|   |   +---*
|   |   +---dict
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---private
|   +---:
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Obsolete APIs
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSDictionary
|   +--- 
|   +---*
|   +---getClassDictionary
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---bool
|   +--- 
|   +---serialize
|   +---(
|   |   +---OSSerialize
|   |   +--- 
|   |   +---*
|   |   +---s
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Virtual Padding functions for MetaClass's
|   |   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---0
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---1
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---2
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---3
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---4
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---5
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---6
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---7
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---}
+---;
+--- 
+---[ NEWLINE ]
-=: COMPUTED VALUE :=-
SUCCESS: 0
VALUE: 0
-=: CPP CHANGES :=-
$CPP_HASH{OSDeclareAbstractStructors} =>                                
         private:                                                                 
        static const OSMetaClass * const superClass;                         
    public:                                                                 
        static const OSMetaClass * const metaClass;                         
        static class MetaClass : public OSMetaClass {                         
        public:                                                                 
            MetaClass();                                                 
            virtual OSObject *alloc() const;                                 
        } gMetaClass;                                                         
        friend class className ::MetaClass;                                 
        virtual const OSMetaClass * getMetaClass() const;                 
    protected:                                                                 
        className (const OSMetaClass *);                                 
        virtual ~ className ();                                
    private:                                                                
        className (); /* Make primary constructor private in abstract */ 
    protected:
$CPP_HASH{OSDeclareCommonStructors} =>                                
    private:                                                                
        static const OSMetaClass * const superClass;                        
    public:                                                                
        static const OSMetaClass * const metaClass;                        
        static class MetaClass : public OSMetaClass {                        
        public:                                                                
            MetaClass();                                                
            virtual OSObject *alloc() const;                                
        } gMetaClass;                                                        
        friend class className ::MetaClass;                                
        virtual const OSMetaClass * getMetaClass() const;                
    protected:                                                                
        className (const OSMetaClass *);                                
        virtual ~ className ()
$CPP_HASH{OSDeclareDefaultStructors} =>                                
         private:                                                                 
        static const OSMetaClass * const superClass;                         
    public:                                                                 
        static const OSMetaClass * const metaClass;                         
        static class MetaClass : public OSMetaClass {                         
        public:                                                                 
            MetaClass();                                                 
            virtual OSObject *alloc() const;                                 
        } gMetaClass;                                                         
        friend class className ::MetaClass;                                 
        virtual const OSMetaClass * getMetaClass() const;                 
    protected:                                                                 
        className (const OSMetaClass *);                                 
        virtual ~ className ();                                
    public:                                                                
        className ();                                                        
    protected:
$CPP_HASH{OSDefineAbstractStructors} =>                
    OSObject * className ::MetaClass::alloc() const { return ; }
$CPP_HASH{OSDefineDefaultStructors} =>                
    OSObject * className ::MetaClass::alloc() const                        
        { return new className; }                                        
    className :: className () : superClassName (&gMetaClass)                
        { gMetaClass.instanceConstructed(); }
$CPP_HASH{OSDefineMetaClass} =>                        
     /* Class global data */                                                 
    className ::MetaClass className ::gMetaClass;                         
    const OSMetaClass * const className ::metaClass =                          
        & className ::gMetaClass;                                         
    const OSMetaClass * const className ::superClass =                          
        &  superClassName ::gMetaClass;                                         
    /* Class member functions */                                         
    className :: className(const OSMetaClass *meta)                         
            :  superClassName (meta) { }                                         
    className ::~ className() { }                                         
    const OSMetaClass * className ::getMetaClass() const                 
        { return &gMetaClass; }                                                 
    /* The ::MetaClass constructor */                                         
    className ::MetaClass::MetaClass()                                         
        : OSMetaClass("className", className::superClass, sizeof(className))  
        {  ; }
$CPP_HASH{OSDefineMetaClassAndAbstractStructors} => 
     /* Class global data */                                                  
    className ::MetaClass className ::gMetaClass;                          
    const OSMetaClass * const className ::metaClass =                           
        & className ::gMetaClass;                                          
    const OSMetaClass * const className ::superClass =                           
        &   superClassName ::gMetaClass;                                          
    /* Class member functions */                                          
    className :: className(const OSMetaClass *meta)                          
            :   superClassName (meta) { }                                          
    className ::~ className() { }                                          
    const OSMetaClass * className ::getMetaClass() const                  
        { return &gMetaClass; }                                                  
    /* The ::MetaClass constructor */                                          
    className ::MetaClass::MetaClass()                                          
        : OSMetaClass("className", className::superClass, sizeof(className))   
        {   ; }                 
     OSObject * className ::MetaClass::alloc() const { return ; }
$CPP_HASH{OSDefineMetaClassAndAbstractStructorsWithInit} => 
     /* Class global data */                                                 
    className ::MetaClass className ::gMetaClass;                         
    const OSMetaClass * const className ::metaClass =                          
        & className ::gMetaClass;                                         
    const OSMetaClass * const className ::superClass =                          
        &  superClassName ::gMetaClass;                                         
    /* Class member functions */                                         
    className :: className(const OSMetaClass *meta)                         
            :  superClassName (meta) { }                                         
    className ::~ className() { }                                         
    const OSMetaClass * className ::getMetaClass() const                 
        { return &gMetaClass; }                                                 
    /* The ::MetaClass constructor */                                         
    className ::MetaClass::MetaClass()                                         
        : OSMetaClass("className", className::superClass, sizeof(className))  
        {  init; }                
     OSObject * className ::MetaClass::alloc() const { return ; }
$CPP_HASH{OSDefineMetaClassAndStructors} =>        
     /* Class global data */                                                  
    className ::MetaClass className ::gMetaClass;                          
    const OSMetaClass * const className ::metaClass =                           
        & className ::gMetaClass;                                          
    const OSMetaClass * const className ::superClass =                           
        &   superClassName ::gMetaClass;                                          
    /* Class member functions */                                          
    className :: className(const OSMetaClass *meta)                          
            :   superClassName (meta) { }                                          
    className ::~ className() { }                                          
    const OSMetaClass * className ::getMetaClass() const                  
        { return &gMetaClass; }                                                  
    /* The ::MetaClass constructor */                                          
    className ::MetaClass::MetaClass()                                          
        : OSMetaClass("className", className::superClass, sizeof(className))   
        {   ; }                 
     OSObject * className ::MetaClass::alloc() const                          
        { return new className; }                                          
    className :: className () :   superClassName (&gMetaClass)                  
        { gMetaClass.instanceConstructed(); }
$CPP_HASH{OSDefineMetaClassAndStructorsWithInit} => 
     /* Class global data */                                                 
    className ::MetaClass className ::gMetaClass;                         
    const OSMetaClass * const className ::metaClass =                          
        & className ::gMetaClass;                                         
    const OSMetaClass * const className ::superClass =                          
        &  superClassName ::gMetaClass;                                         
    /* Class member functions */                                         
    className :: className(const OSMetaClass *meta)                         
            :  superClassName (meta) { }                                         
    className ::~ className() { }                                         
    const OSMetaClass * className ::getMetaClass() const                 
        { return &gMetaClass; }                                                 
    /* The ::MetaClass constructor */                                         
    className ::MetaClass::MetaClass()                                         
        : OSMetaClass("className", className::superClass, sizeof(className))  
        {  init; }                
     OSObject * className ::MetaClass::alloc() const                         
        { return new className; }                                         
    className :: className () :  superClassName (&gMetaClass)                 
        { gMetaClass.instanceConstructed(); }
$CPP_HASH{OSDefineMetaClassWithInit} =>        
    /* Class global data */                                                
    className ::MetaClass className ::gMetaClass;                        
    const OSMetaClass * const className ::metaClass =                         
        & className ::gMetaClass;                                        
    const OSMetaClass * const className ::superClass =                         
        & superClassName ::gMetaClass;                                        
    /* Class member functions */                                        
    className :: className(const OSMetaClass *meta)                        
            : superClassName (meta) { }                                        
    className ::~ className() { }                                        
    const OSMetaClass * className ::getMetaClass() const                
        { return &gMetaClass; }                                                
    /* The ::MetaClass constructor */                                        
    className ::MetaClass::MetaClass()                                        
        : OSMetaClass(#className, className::superClass, sizeof(className)) 
        { init; }
$CPP_HASH{OSMetaClassDeclareReservedUnused} =>                
    private:                                                                
    APPLE_KEXT_PAD_METHOD void _RESERVED ## classname ## index ()
$CPP_HASH{OSMetaClassDeclareReservedUsed} => 
$CPP_HASH{OSMetaClassDefineReservedUnused} =>                
void classname ::_RESERVED ## classname ## index ()                         
    { APPLE_KEXT_PAD_IMPL(index); }
$CPP_HASH{OSMetaClassDefineReservedUsed} => 
$CPP_ARG_HASH{OSDeclareAbstractStructors} => className
$CPP_ARG_HASH{OSDeclareCommonStructors} => className
$CPP_ARG_HASH{OSDeclareDefaultStructors} => className
$CPP_ARG_HASH{OSDefineAbstractStructors} => className, superClassName
$CPP_ARG_HASH{OSDefineDefaultStructors} => className, superClassName
$CPP_ARG_HASH{OSDefineMetaClass} => className, superClassName
$CPP_ARG_HASH{OSDefineMetaClassAndAbstractStructors} => className, superClassName
$CPP_ARG_HASH{OSDefineMetaClassAndAbstractStructorsWithInit} => className, superClassName, init
$CPP_ARG_HASH{OSDefineMetaClassAndStructors} => className, superClassName
$CPP_ARG_HASH{OSDefineMetaClassAndStructorsWithInit} => className, superClassName, init
$CPP_ARG_HASH{OSDefineMetaClassWithInit} => className, superClassName, init
$CPP_ARG_HASH{OSMetaClassDeclareReservedUnused} => classname, index
$CPP_ARG_HASH{OSMetaClassDeclareReservedUsed} => classname, index
$CPP_ARG_HASH{OSMetaClassDefineReservedUnused} => classname, index
$CPP_ARG_HASH{OSMetaClassDefineReservedUsed} => classname, index
-=: FOUND MATCH :=-
1
-=: NAMED OBJECTS :=-
TREE COUNT: 0
INDEX GROUP: 
IS BLOCK: 
OBJECT TYPE: HeaderDoc::Header
NAME: class 5
APIUID: //test_ref/doc/header/class_5.test
ABSTRACT: ""
DISCUSSION: "<p></p>"
UPDATED: ""
COPYRIGHT: ""
HTMLMETA: ""
PRIVATEDECLARATION: ""
GROUP: ""
INDEXGROUP: ""
THROWS: ""
XMLTHROWS: ""
UPDATED: ""
LINKAGESTATE: ""
ACCESSCONTROL: ""
AVAILABILITY: ""
LINKUID: ""
ORIGCLASS: ""
ISDEFINE: ""
ISTEMPLATE: ""
VALUE: "UNKNOWN"
RETURNTYPE: ""
LINENUM: ""
CLASS: "HeaderDoc::Header"
MASTERENUM: ""
APIREFSETUPDONE: "1"
TPCDONE: ""
NOREGISTERUID: ""
SUPPRESSCHILDREN: ""
NAMELINE_DISCUSSION: ""
HIDEDOC: ""
HIDESINGLETONS: ""
HIDECONTENTS: ""
MAINOBJECT: ""
LIST ATTRIBUTES: 
SHORT ATTRIBUTES: 
LONG ATTRIBUTES: 
    TREE COUNT: 1
    INDEX GROUP: 
    IS BLOCK: 
    OBJECT TYPE: HeaderDoc::CPPClass
    NAME: OSMetaClass
    APIUID: 
    ABSTRACT: "<p>An instance of a OSMetaClass represents one class then the kernel's runtime type information system is aware of.
"
    DISCUSSION: "<p></p>"
    UPDATED: ""
    COPYRIGHT: ""
    HTMLMETA: ""
    PRIVATEDECLARATION: ""
    GROUP: ""
    INDEXGROUP: ""
    THROWS: ""
    XMLTHROWS: ""
    UPDATED: ""
    LINKAGESTATE: ""
    ACCESSCONTROL: ""
    AVAILABILITY: ""
    LINKUID: ""
    ORIGCLASS: ""
    ISDEFINE: ""
    ISTEMPLATE: ""
    VALUE: "UNKNOWN"
    RETURNTYPE: ""
    LINENUM: ""
    CLASS: "HeaderDoc::CPPClass"
    MASTERENUM: ""
    APIREFSETUPDONE: "1"
    TPCDONE: ""
    NOREGISTERUID: ""
    SUPPRESSCHILDREN: "0"
    NAMELINE_DISCUSSION: ""
    HIDEDOC: ""
    HIDESINGLETONS: ""
    HIDECONTENTS: ""
    MAINOBJECT: ""
    LIST ATTRIBUTES: 
    SHORT ATTRIBUTES: <p><b>Superclass</b></p>

<p><!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/cpp/econst/OSMetaClassBase //test_ref/cpp/data/OSMetaClassBase //test_ref/cpp/clconst/OSMetaClassBase //test_ref/cpp/instm/OSMetaClassBase //test_ref/cpp/clm/OSMetaClassBase //test_ref/cpp/intfcm/OSMetaClassBase //test_ref/cpp/intfm/OSMetaClassBase //test_ref/cpp/func/OSMetaClassBase //test_ref/cpp/ftmplt/OSMetaClassBase //test_ref/cpp/defn/OSMetaClassBase //test_ref/cpp/macro/OSMetaClassBase //test_ref/doc/com/intfm/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" -->OSMetaClassBase<!-- /a --></p>
<p><b>Declared In</b></p><p><a href="../../index.html" logicalPath="//test_ref/doc/header/class_5.test" target="_top" machineGenerated="true">class 5</a></p>

    LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: operator new
        APIUID: //test_ref/cpp/clm/OSMetaClass/operator_new/void/(size_t)
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: "     static void "
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: size
            TYPE: size_t
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: OSMetaClass
        APIUID: //test_ref/cpp/instm/OSMetaClass/OSMetaClass//()
        ABSTRACT: "<p>Private the default constructor "
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: logError
        APIUID: //test_ref/cpp/clm/OSMetaClass/logError/void/(OSReturn)
        ABSTRACT: "<p>Given an error code log an error string using printf "
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: result
            TYPE: OSReturn
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getMetaClassWithName
        APIUID: //test_ref/cpp/clm/OSMetaClass/getMetaClassWithName/constOSMetaClass*/(constOSSymbol*)
        ABSTRACT: "<p>Lookup a meta-class in the runtime type information system
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static const OSMetaClass *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: const OSSymbol *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/getMetaClassWithName/name
            ABSTRACT: ""
            DISCUSSION: "<p>Name of the desired class's meta-class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: retain
        APIUID: //test_ref/cpp/instm/OSMetaClass/retain/void/()
        ABSTRACT: "<p>Implement abstract but should no dynamic allocation is allowed "
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: release
        APIUID: //test_ref/cpp/instm/OSMetaClass/release/void/()
        ABSTRACT: "<p>Implement abstract but should no dynamic allocation is allowed "
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: release
        APIUID: //test_ref/cpp/instm/OSMetaClass/release/void/(int)
        ABSTRACT: "<p>Implement abstract but should no dynamic allocation is allowed 
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: when
            TYPE: int
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: when
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/release/when
            ABSTRACT: ""
            DISCUSSION: "<p>ignored."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: taggedRetain
        APIUID: //test_ref/cpp/instm/OSMetaClass/taggedRetain/void/(constvoid*)
        ABSTRACT: "<p>Retain a tagged reference in this object.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: tag
            TYPE: const void *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: release
        APIUID: //test_ref/doc/title:instm/OSMetaClass/release/void/(constvoid*)
        ABSTRACT: "<p>Release a tagged reference to this object
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: tag
            TYPE: const void *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: taggedRelease
        APIUID: //test_ref/cpp/instm/OSMetaClass/taggedRelease/void/(constvoid*)
        ABSTRACT: "<p>Release a tagged reference to this object
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: tag
            TYPE: const void *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: release
        APIUID: //test_ref/doc/title:instm/OSMetaClass/release/void/(constvoid*,constint)
        ABSTRACT: "<p>Release a tagged reference to this object
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: tag
            TYPE: const void *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: when
            TYPE: const int
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: taggedRelease
        APIUID: //test_ref/cpp/instm/OSMetaClass/taggedRelease/void/(constvoid*,constint)
        ABSTRACT: "<p>Release a tagged reference to this object
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: tag
            TYPE: const void *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: when
            TYPE: const int
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getRetainCount
        APIUID: //test_ref/cpp/instm/OSMetaClass/getRetainCount/int/()
        ABSTRACT: "<p>Implement abstract but should no dynamic allocation is allowed "
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual int"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getMetaClass
        APIUID: //test_ref/cpp/instm/OSMetaClass/getMetaClass/constOSMetaClass*/()
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual const OSMetaClass *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: OSMetaClass
        APIUID: //test_ref/cpp/instm/OSMetaClass/OSMetaClass//(constchar*,constOSMetaClass*,unsignedint)
        ABSTRACT: "<p>Constructor for OSMetaClass objects
"
        DISCUSSION: "<p>This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: inClassName
            TYPE: const char *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: inSuperClass
            TYPE: const OSMetaClass *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: inClassSize
            TYPE: unsigned int
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: inClassName
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/OSMetaClass/inClassName
            ABSTRACT: ""
            DISCUSSION: "<p>cString of the name of the class this meta-class represents."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: inSuperClassName
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/OSMetaClass/inSuperClassName
            ABSTRACT: ""
            DISCUSSION: "<p>cString of the name of the super class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: inClassSize
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/OSMetaClass/inClassSize
            ABSTRACT: ""
            DISCUSSION: "<p>sizeof the class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: ~OSMetaClass
        APIUID: //test_ref/doc/title:instm/OSMetaClass/~OSMetaClass//()
        ABSTRACT: "<p>Destructor for OSMetaClass objects
"
        DISCUSSION: "<p>If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. "
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: operator delete
        APIUID: //test_ref/cpp/instm/OSMetaClass/operator_delete/void/(void*,size_t)
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "protected"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: "     void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: *
            TYPE: void
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: 
            TYPE:  size_t
            APIUID: //test_ref/cpp/internal_temporary_object/OSMetaClass
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: preModLoad
        APIUID: //test_ref/cpp/clm/OSMetaClass/preModLoad/void*/(constchar*)
        ABSTRACT: "<p>Prepare the runtime type system for the load of a module.
"
        DISCUSSION: "<p>Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static void *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: kmodName
            TYPE: const char *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: kmodName
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/preModLoad/kmodName
            ABSTRACT: ""
            DISCUSSION: "<p>globally unique cString name of the kernel module being loaded."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: checkModLoad
        APIUID: //test_ref/cpp/clm/OSMetaClass/checkModLoad/bool/(void*)
        ABSTRACT: "<p>Check if the current load attempt is still OK.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static bool"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: loadHandle
            TYPE: void *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: loadHandle
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkModLoad/loadHandle
            ABSTRACT: ""
            DISCUSSION: "<p>Handle returned when a successful call to preModLoad is made."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: postModLoad
        APIUID: //test_ref/cpp/clm/OSMetaClass/postModLoad/OSReturn/(void*)
        ABSTRACT: "<p>Finish postprocessing on a kernel module's meta-classes.
"
        DISCUSSION: "<p>As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static OSReturn"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: loadHandle
            TYPE: void *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: loadHandle
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/postModLoad/loadHandle
            ABSTRACT: ""
            DISCUSSION: "<p>Handle returned when a successful call to preModLoad is made."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: modHasInstance
        APIUID: //test_ref/cpp/clm/OSMetaClass/modHasInstance/bool/(constchar*)
        ABSTRACT: "<p>Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
"
        DISCUSSION: "<p>Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static bool"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: kmodName
            TYPE: const char *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: kmodName
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/modHasInstance/kmodName
            ABSTRACT: ""
            DISCUSSION: "<p>cString of the kernel module name."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: reportModInstances
        APIUID: //test_ref/cpp/clm/OSMetaClass/reportModInstances/void/(constchar*)
        ABSTRACT: "<p>Log any object that has instances in a module.
"
        DISCUSSION: "<p>When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: kmodName
            TYPE: const char *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: kmodName
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/reportModInstances/kmodName
            ABSTRACT: ""
            DISCUSSION: "<p>cString of the kernel module name."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: considerUnloads
        APIUID: //test_ref/cpp/clm/OSMetaClass/considerUnloads/void/()
        ABSTRACT: "<p>Schedule module unloading.
"
        DISCUSSION: "<p>Schedule unused modules to be unloaded; called when IOKit matching goes idle. "
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: allocClassWithName
        APIUID: //test_ref/cpp/clm/OSMetaClass/allocClassWithName/OSObject*/(constOSSymbol*)
        ABSTRACT: "<p>Lookup a meta-class in the runtime type information system and return the results of an alloc call.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static OSObject *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: const OSSymbol *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/allocClassWithName/name
            ABSTRACT: ""
            DISCUSSION: "<p>Name of the desired class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: allocClassWithName
        APIUID: //test_ref/cpp/clm/OSMetaClass/allocClassWithName/OSObject*/(constOSString*)
        ABSTRACT: "<p>Lookup a meta-class in the runtime type information system and return the results of an alloc call.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static OSObject *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: const OSString *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/allocClassWithName/name
            ABSTRACT: ""
            DISCUSSION: "<p>Name of the desired class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: allocClassWithName
        APIUID: //test_ref/cpp/clm/OSMetaClass/allocClassWithName/OSObject*/(constchar*)
        ABSTRACT: "<p>Lookup a meta-class in the runtime type information system and return the results of an alloc call.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static OSObject *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: const char *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/allocClassWithName/name
            ABSTRACT: ""
            DISCUSSION: "<p>Name of the desired class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: checkMetaCastWithName
        APIUID: //test_ref/cpp/clm/OSMetaClass/checkMetaCastWithName/OSMetaClassBase*/(constOSSymbol*,constOSMetaClassBase*)
        ABSTRACT: "<p>Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static OSMetaClassBase *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: const OSSymbol *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: in
            TYPE: const OSMetaClassBase *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkMetaCastWithName/name
            ABSTRACT: ""
            DISCUSSION: "<p>Name of the desired class or super class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: in
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkMetaCastWithName/in
            ABSTRACT: ""
            DISCUSSION: "<p>object to be introspected."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: checkMetaCastWithName
        APIUID: //test_ref/cpp/clm/OSMetaClass/checkMetaCastWithName/OSMetaClassBase*/(constOSString*,constOSMetaClassBase*)
        ABSTRACT: "<p>Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static OSMetaClassBase *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: const OSString *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: in
            TYPE: const OSMetaClassBase *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkMetaCastWithName/name
            ABSTRACT: ""
            DISCUSSION: "<p>Name of the desired class or super class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: in
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkMetaCastWithName/in
            ABSTRACT: ""
            DISCUSSION: "<p>object to be introspected."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: checkMetaCastWithName
        APIUID: //test_ref/cpp/clm/OSMetaClass/checkMetaCastWithName/OSMetaClassBase*/(constchar*,constOSMetaClassBase*)
        ABSTRACT: "<p>Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static OSMetaClassBase *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: const char *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: in
            TYPE: const OSMetaClassBase *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: name
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkMetaCastWithName/name
            ABSTRACT: ""
            DISCUSSION: "<p>Name of the desired class or super class."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: in
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkMetaCastWithName/in
            ABSTRACT: ""
            DISCUSSION: "<p>object to be introspected."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: instanceConstructed
        APIUID: //test_ref/cpp/instm/OSMetaClass/instanceConstructed/void/()
        ABSTRACT: "<p>Counts the instances of the class behind this metaclass.
"
        DISCUSSION: "<p>Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class "
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: instanceDestructed
        APIUID: //test_ref/cpp/instm/OSMetaClass/instanceDestructed/void/()
        ABSTRACT: "<p>Removes one instance of the class behind this metaclass.
"
        DISCUSSION: "<p>OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. "
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: checkMetaCast
        APIUID: //test_ref/cpp/instm/OSMetaClass/checkMetaCast/OSMetaClassBase*/(constOSMetaClassBase*)
        ABSTRACT: "<p>Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " OSMetaClassBase *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: check
            TYPE: const OSMetaClassBase *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: check
            TYPE: 
            APIUID: //test_ref/doc/functionparam/OSMetaClass/checkMetaCast/check
            ABSTRACT: ""
            DISCUSSION: "<p>Pointer of object to introspect."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getInstanceCount
        APIUID: //test_ref/cpp/instm/OSMetaClass/getInstanceCount/unsignedint/()
        ABSTRACT: "<p>How many instances of the class have been created.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " unsigned int"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getSuperClass
        APIUID: //test_ref/cpp/instm/OSMetaClass/getSuperClass/constOSMetaClass*/()
        ABSTRACT: "<p>'Get'ter for the super class.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " const OSMetaClass *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getKmodName
        APIUID: //test_ref/cpp/instm/OSMetaClass/getKmodName/constOSSymbol*/()
        ABSTRACT: "<p>'Get'ter for the name of the kmod.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " const OSSymbol *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getClassName
        APIUID: //test_ref/cpp/instm/OSMetaClass/getClassName/constchar*/()
        ABSTRACT: "<p>'Get'ter for class name.
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " const char *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getClassSize
        APIUID: //test_ref/cpp/instm/OSMetaClass/getClassSize/unsignedint/()
        ABSTRACT: "<p>'Get'ter for sizeof(class).
"
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " unsigned int"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: alloc
        APIUID: //test_ref/cpp/instm/OSMetaClass/alloc/OSObject*/()
        ABSTRACT: "<p>Allocate an instance of the class that this OSMetaClass instance represents.
"
        DISCUSSION: "<p>This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual OSObject *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: reservedCalled
        APIUID: //test_ref/cpp/instm/OSMetaClass/reservedCalled/void/(int)
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: ind
            TYPE: int
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: printInstanceCounts
        APIUID: //test_ref/cpp/clm/OSMetaClass/printInstanceCounts/void/()
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: serializeClassDictionary
        APIUID: //test_ref/cpp/clm/OSMetaClass/serializeClassDictionary/void/(OSDictionary*)
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static void"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: dict
            TYPE: OSDictionary *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: getClassDictionary
        APIUID: //test_ref/cpp/clm/OSMetaClass/getClassDictionary/OSDictionary*/()
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " static OSDictionary *"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: serialize
        APIUID: //test_ref/cpp/instm/OSMetaClass/serialize/bool/(OSSerialize*)
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " virtual bool"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: s
            TYPE: OSSerialize *
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: 0
        APIUID: //test_ref/cpp/instm/OSMetaClass/0/APPLE_KEXT_PAD_METHODvoid_RESERVEDOSMetaClass/()
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " APPLE_KEXT_PAD_METHOD void _RESERVED OSMetaClass"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: 1
        APIUID: //test_ref/cpp/instm/OSMetaClass/1/APPLE_KEXT_PAD_METHODvoid_RESERVEDOSMetaClass/()
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " APPLE_KEXT_PAD_METHOD void _RESERVED OSMetaClass"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: 2
        APIUID: //test_ref/cpp/instm/OSMetaClass/2/APPLE_KEXT_PAD_METHODvoid_RESERVEDOSMetaClass/()
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " APPLE_KEXT_PAD_METHOD void _RESERVED OSMetaClass"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: 3
        APIUID: //test_ref/cpp/instm/OSMetaClass/3/APPLE_KEXT_PAD_METHODvoid_RESERVEDOSMetaClass/()
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " APPLE_KEXT_PAD_METHOD void _RESERVED OSMetaClass"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: 4
        APIUID: //test_ref/cpp/instm/OSMetaClass/4/APPLE_KEXT_PAD_METHODvoid_RESERVEDOSMetaClass/()
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " APPLE_KEXT_PAD_METHOD void _RESERVED OSMetaClass"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: 5
        APIUID: //test_ref/cpp/instm/OSMetaClass/5/APPLE_KEXT_PAD_METHODvoid_RESERVEDOSMetaClass/()
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " APPLE_KEXT_PAD_METHOD void _RESERVED OSMetaClass"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: 6
        APIUID: //test_ref/cpp/instm/OSMetaClass/6/APPLE_KEXT_PAD_METHODvoid_RESERVEDOSMetaClass/()
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " APPLE_KEXT_PAD_METHOD void _RESERVED OSMetaClass"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Function
        NAME: 7
        APIUID: //test_ref/cpp/instm/OSMetaClass/7/APPLE_KEXT_PAD_METHODvoid_RESERVEDOSMetaClass/()
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: " APPLE_KEXT_PAD_METHOD void _RESERVED OSMetaClass"
        LINENUM: ""
        CLASS: "HeaderDoc::Function"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Constant
        NAME: superClass
        APIUID: //test_ref/cpp/clconst/OSMetaClass/superClass
        ABSTRACT: ""
        DISCUSSION: "<p>Handle to the superclass' meta class.</p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: "const OSMetaClass *"
        LINENUM: ""
        CLASS: "HeaderDoc::Constant"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: "Handle to the superclass' meta class."
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: <p><b>See Also</b></p><div class='list_indent'><dl>
<dt><p><hd_link posstarget="//test_ref/cpp/clconst/OSMetaClass/superClassLink">superClassLink</hd_link></p></dt><dd></dd></dl></div>

        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Constant
        NAME: superClassLink
        APIUID: //test_ref/cpp/clconst/OSMetaClass/superClassLink
        ABSTRACT: ""
        DISCUSSION: "<p>Handle to the superclass' meta class.</p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: "const OSMetaClass *"
        LINENUM: ""
        CLASS: "HeaderDoc::Constant"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: "Handle to the superclass' meta class."
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: <p><b>See Also</b></p><div class='list_indent'><dl>
<dt><p><hd_link posstarget="//test_ref/cpp/clconst/OSMetaClass/superClass">superClass</hd_link></p></dt><dd></dd></dl></div>

        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Constant
        NAME: className
        APIUID: //test_ref/cpp/clconst/OSMetaClass/className
        ABSTRACT: ""
        DISCUSSION: "<p>OSSymbol of the class' name.</p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: "const OSSymbol *"
        LINENUM: ""
        CLASS: "HeaderDoc::Constant"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: "OSSymbol of the class' name."
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Constant
        NAME: metaClass
        APIUID: //test_ref/cpp/clconst/OSMetaClass/metaClass
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: "static const OSMetaClass * const"
        LINENUM: ""
        CLASS: "HeaderDoc::Constant"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Struct
        NAME: ExpansionData
        APIUID: //test_ref/cpp/tag/OSMetaClass/ExpansionData
        ABSTRACT: ""
        DISCUSSION: "<p></p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::Struct"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS PROPERTY: 0
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Var
        NAME: reserved
        APIUID: //test_ref/cpp/data/OSMetaClass/reserved
        ABSTRACT: ""
        DISCUSSION: "<p>Reserved for future use.  (Internal use only)</p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: "ExpansionData *"
        LINENUM: ""
        CLASS: "HeaderDoc::Var"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: "Reserved for future use.  (Internal use only)"
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS PROPERTY: 0
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Var
        NAME: classSize
        APIUID: //test_ref/cpp/data/OSMetaClass/classSize
        ABSTRACT: ""
        DISCUSSION: "<p>How big is a single instancde of this class.</p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: "unsigned int"
        LINENUM: ""
        CLASS: "HeaderDoc::Var"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: "How big is a single instancde of this class."
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS PROPERTY: 0
        IS BLOCK: 
        OBJECT TYPE: HeaderDoc::Var
        NAME: instanceCount
        APIUID: //test_ref/cpp/data/OSMetaClass/instanceCount
        ABSTRACT: ""
        DISCUSSION: "<p>Roughly number of instances of the object.  Used primarily as a code in use flag.</p>"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "private"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: "mutable unsigned int"
        LINENUM: ""
        CLASS: "HeaderDoc::Var"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: "Roughly number of instances of the object.  Used primarily as a code in use flag."
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDeclareCommonStructors
        APIUID: //test_ref/cpp/macro/OSDeclareCommonStructors
        ABSTRACT: "<p>Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
"
        DISCUSSION: ""
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDeclareCommonStructors/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDeclareDefaultStructors
        APIUID: //test_ref/cpp/macro/OSDeclareDefaultStructors
        ABSTRACT: "<p>One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
"
        DISCUSSION: "<p>Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDeclareDefaultStructors/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDeclareAbstractStructors
        APIUID: //test_ref/cpp/macro/OSDeclareAbstractStructors
        ABSTRACT: "<p>One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
"
        DISCUSSION: "<p>This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDeclareAbstractStructors/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineMetaClassWithInit
        APIUID: //test_ref/cpp/macro/OSDefineMetaClassWithInit
        ABSTRACT: "<p>Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
"
        DISCUSSION: ""
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: init
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassWithInit/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassWithInit/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: init
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassWithInit/init
            ABSTRACT: ""
            DISCUSSION: "<p>Name of a function to call after the OSMetaClass is constructed."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineAbstractStructors
        APIUID: //test_ref/cpp/macro/OSDefineAbstractStructors
        ABSTRACT: "<p>Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
"
        DISCUSSION: ""
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineAbstractStructors/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineAbstractStructors/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineDefaultStructors
        APIUID: //test_ref/cpp/macro/OSDefineDefaultStructors
        ABSTRACT: "<p>Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
"
        DISCUSSION: ""
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineDefaultStructors/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineDefaultStructors/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineMetaClassAndAbstractStructorsWithInit
        APIUID: //test_ref/cpp/macro/OSDefineMetaClassAndAbstractStructorsWithInit
        ABSTRACT: "<p>Primary definition macro for all abstract classes that a subclasses of OSObject.
"
        DISCUSSION: "<p>Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: init
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndAbstractStructorsWithInit/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndAbstractStructorsWithInit/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: init
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndAbstractStructorsWithInit/init
            ABSTRACT: ""
            DISCUSSION: "<p>Name of a function to call after the OSMetaClass is constructed."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineMetaClassAndStructorsWithInit
        APIUID: //test_ref/cpp/macro/OSDefineMetaClassAndStructorsWithInit
        ABSTRACT: "<p>See OSDefineMetaClassAndStructors
"
        DISCUSSION: "<p>Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: init
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndStructorsWithInit/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndStructorsWithInit/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: init
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndStructorsWithInit/init
            ABSTRACT: ""
            DISCUSSION: "<p>Name of a function to call after the OSMetaClass is constructed."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineMetaClass
        APIUID: //test_ref/cpp/macro/OSDefineMetaClass
        ABSTRACT: "<p>Define an OSMetaClass instance, used for backward compatiblility only.
"
        DISCUSSION: ""
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClass/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClass/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineMetaClassAndStructors
        APIUID: //test_ref/cpp/macro/OSDefineMetaClassAndStructors
        ABSTRACT: "<p>Define an OSMetaClass subclass and the runtime system routines.
"
        DISCUSSION: "<p>Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndStructors/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndStructors/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSDefineMetaClassAndAbstractStructors
        APIUID: //test_ref/cpp/macro/OSDefineMetaClassAndAbstractStructors
        ABSTRACT: "<p>Define an OSMetaClass subclass and the runtime system routines.
"
        DISCUSSION: "<p>Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
"
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TAGGED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: className
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndAbstractStructors/className
            ABSTRACT: ""
            DISCUSSION: "<p>Name of class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: superClassName
            TYPE: 
            APIUID: //test_ref/doc/defineparam/OSDefineMetaClassAndAbstractStructors/superClassName
            ABSTRACT: ""
            DISCUSSION: "<p>Name of super class. NO QUOTES and NO MACROS."
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSMetaClassDeclareReservedUnused
        APIUID: //test_ref/cpp/macro/OSMetaClassDeclareReservedUnused
        ABSTRACT: ""
        DISCUSSION: ""
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: classname
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: index
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSMetaClassDeclareReservedUsed
        APIUID: //test_ref/cpp/macro/OSMetaClassDeclareReservedUsed
        ABSTRACT: ""
        DISCUSSION: ""
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: classname
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: index
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSMetaClassDefineReservedUnused
        APIUID: //test_ref/cpp/macro/OSMetaClassDefineReservedUnused
        ABSTRACT: ""
        DISCUSSION: ""
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: classname
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: index
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
        TREE COUNT: 1
        INDEX GROUP: 
        IS BLOCK: 
        IS AVAILABILITY MACRO: 
        PARSE ONLY: 
        OBJECT TYPE: HeaderDoc::PDefine
        NAME: OSMetaClassDefineReservedUsed
        APIUID: //test_ref/cpp/macro/OSMetaClassDefineReservedUsed
        ABSTRACT: ""
        DISCUSSION: ""
        UPDATED: ""
        COPYRIGHT: ""
        HTMLMETA: ""
        PRIVATEDECLARATION: ""
        GROUP: ""
        INDEXGROUP: ""
        THROWS: ""
        XMLTHROWS: ""
        UPDATED: ""
        LINKAGESTATE: ""
        ACCESSCONTROL: "public"
        AVAILABILITY: ""
        LINKUID: ""
        ORIGCLASS: ""
        ISDEFINE: ""
        ISTEMPLATE: ""
        VALUE: "UNKNOWN"
        RETURNTYPE: ""
        LINENUM: ""
        CLASS: "HeaderDoc::PDefine"
        MASTERENUM: ""
        APIREFSETUPDONE: "1"
        TPCDONE: ""
        NOREGISTERUID: ""
        SUPPRESSCHILDREN: "0"
        NAMELINE_DISCUSSION: ""
        HIDEDOC: ""
        HIDESINGLETONS: ""
        HIDECONTENTS: ""
        MAINOBJECT: ""
        LIST ATTRIBUTES: 
        SHORT ATTRIBUTES: 
        LONG ATTRIBUTES: 
        PARSED PARAMETERS:
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: classname
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
            TREE COUNT: 0
            INDEX GROUP: 
            IS BLOCK: 
            OBJECT TYPE: HeaderDoc::MinorAPIElement
            NAME: index
            TYPE: 
            APIUID: 
            ABSTRACT: ""
            DISCUSSION: "<p></p>"
            UPDATED: ""
            COPYRIGHT: ""
            HTMLMETA: ""
            PRIVATEDECLARATION: ""
            GROUP: ""
            INDEXGROUP: ""
            THROWS: ""
            XMLTHROWS: ""
            UPDATED: ""
            LINKAGESTATE: ""
            ACCESSCONTROL: ""
            AVAILABILITY: ""
            LINKUID: ""
            ORIGCLASS: ""
            ISDEFINE: ""
            ISTEMPLATE: ""
            VALUE: "UNKNOWN"
            RETURNTYPE: ""
            LINENUM: ""
            CLASS: "HeaderDoc::MinorAPIElement"
            MASTERENUM: ""
            APIREFSETUPDONE: "1"
            TPCDONE: ""
            NOREGISTERUID: ""
            SUPPRESSCHILDREN: ""
            NAMELINE_DISCUSSION: ""
            HIDEDOC: ""
            HIDESINGLETONS: ""
            HIDECONTENTS: ""
            MAINOBJECT: ""
            LIST ATTRIBUTES: 
            SHORT ATTRIBUTES: 
            LONG ATTRIBUTES: 
-=: NAMED OBJECT PARSE TREES :=-
OBJECT: OSMetaClass (HeaderDoc::CPPClass)
+---class
+--- 
+---OSMetaClass
+--- 
+---:
+--- 
+---private
+--- 
+---OSMetaClassBase
+---[ NEWLINE ]
+---{
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---private
|   +---:
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Can never be allocated must be created at compile time
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---operator
|   +--- 
|   +---new
|   +---(
|   |   +---size_t
|   |   +--- 
|   |   +---size
|   |   +---)
|   +---;
|   +--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-struct (HAS STATE)
|   +--- 
|   +---ExpansionData
|   +--- 
|   +---{
|   |   +--- 
|   |   +---}
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var reserved Reserved for future use.  (Internal use only)  
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-ExpansionData (HAS STATE)
|   +--- 
|   +---*
|   +---reserved
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var superClass Handle to the superclass' meta class. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---superClassLink
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var className OSSymbol of the class' name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---className
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var classSize How big is a single instancde of this class. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-unsigned (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---classSize
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-mutable (HAS STATE)
|   +--- 
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---instanceCount
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSMetaClass
|   |   +---
@abstract Private the default constructor 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-OSMetaClass (HAS STATE)
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Called by postModLoad
|   |   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function logError
|   |   +---
@abstract Given an error code log an error string using printf 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---logError
|   +---(
|   |   +---OSReturn
|   |   +--- 
|   |   +---result
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---public
|   +---:
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getMetaClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system
|   |   +---
@param name Name of the desired class's meta-class. 
|   |   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---getMetaClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSSymbol
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---protected
|   +---:
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function retain
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---retain
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---release
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---
@param when ignored. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---release
|   +---(
|   |   +---int
|   |   +--- 
|   |   +---when
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function taggedRetain
|   |   +---
@abstract Retain a tagged reference in this object.
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---taggedRetain
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---tag
|   |   +--- 
|   |   +---=
|   |   +--- 
|   |   +---0
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Release a tagged reference to this object
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---taggedRelease
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---tag
|   |   +--- 
|   |   +---=
|   |   +--- 
|   |   +---0
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function release
|   |   +---
@abstract Release a tagged reference to this object
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---taggedRelease
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---tag
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---int
|   |   +--- 
|   |   +---when
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getRetainCount
|   |   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---getRetainCount
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSMetaClass
|   |   +---
@abstract Constructor for OSMetaClass objects
|   |   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   |   +---
@param inClassName cString of the name of the class this meta-class represents.
|   |   +---
@param inSuperClassName cString of the name of the super class.
|   |   +---
@param inClassSize sizeof the class. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-OSMetaClass (HAS STATE)
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---inClassName
|   |   +---,
|   |   +---[ NEWLINE ]
|   |   +---                
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---inSuperClass
|   |   +---,
|   |   +---[ NEWLINE ]
|   |   +---                
|   |   +---unsigned
|   |   +--- 
|   |   +---int
|   |   +--- 
|   |   +---inClassSize
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function ~OSMetaClass
|   |   +---
@abstract Destructor for OSMetaClass objects
|   |   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---~
|   +---OSMetaClass
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   |   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---statically at compile time, don't accidently try to free them.
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---operator
|   +--- 
|   +---delete
|   +---(
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---,
|   |   +--- 
|   |   +---size_t
|   |   +---)
|   +--- 
|   +---;
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---public
|   +---:
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function preModLoad
|   |   +---
@abstract Prepare the runtime type system for the load of a module.
|   |   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   |   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   |   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---preModLoad
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---kmodName
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkModLoad
|   |   +---
@abstract Check if the current load attempt is still OK.
|   |   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   |   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---bool
|   +--- 
|   +---checkModLoad
|   +---(
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---loadHandle
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function postModLoad
|   |   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   |   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   |   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   |   +---
@result Error code of the first error encountered. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSReturn
|   +--- 
|   +---postModLoad
|   +---(
|   |   +---void
|   |   +--- 
|   |   +---*
|   |   +---loadHandle
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function modHasInstance
|   |   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   |   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   |   +---
@param kmodName cString of the kernel module name.
|   |   +---
@result true if there are any current instances of any class in the module.
|   |   +---[ NEWLINE ]
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---bool
|   +--- 
|   +---modHasInstance
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---kmodName
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function reportModInstances
|   |   +---
@abstract Log any object that has instances in a module.
|   |   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   |   +---
@param kmodName cString of the kernel module name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---reportModInstances
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---kmodName
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function considerUnloads
|   |   +---
@abstract Schedule module unloading.
|   |   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---considerUnloads
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function allocClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   |   +---
@param name Name of the desired class. 
|   |   +---
@result pointer to an new object, 0 if not found or so memory. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---allocClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSSymbol
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function allocClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   |   +---
@param name Name of the desired class. 
|   |   +---
@result pointer to an new object, 0 if not found or so memory. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---allocClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSString
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function allocClassWithName
|   |   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   |   +---
@param name Name of the desired class. 
|   |   +---
@result pointer to an new object, 0 if not found or so memory. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---allocClassWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCastWithName
|   |   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   |   +---
@param name Name of the desired class or super class. 
|   |   +---
@param in object to be introspected. 
|   |   +---
@result in parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---[ NEWLINE ]
|   +---        
|   +---checkMetaCastWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSSymbol
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---in
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCastWithName
|   |   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   |   +---
@param name Name of the desired class or super class.
|   |   +---
@param in object to be introspected.
|   |   +---
@result in parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---[ NEWLINE ]
|   +---        
|   +---checkMetaCastWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSString
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---in
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCastWithName
|   |   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   |   +---
@param name Name of the desired class or super class.
|   |   +---
@param in object to be introspected.
|   |   +---
@result in parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---[ NEWLINE ]
|   +---        
|   +---checkMetaCastWithName
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---char
|   |   +--- 
|   |   +---*
|   |   +---name
|   |   +---,
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---in
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function instanceConstructed
|   |   +---
@abstract Counts the instances of the class behind this metaclass.
|   |   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---instanceConstructed
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function instanceDestructed
|   |   +---
@abstract Removes one instance of the class behind this metaclass.
|   |   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---instanceDestructed
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function checkMetaCast
|   |   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   |   +---
@param check Pointer of object to introspect.
|   |   +---
@result check parameter if cast valid, 0 otherwise. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-OSMetaClassBase (HAS STATE)
|   +--- 
|   +---*
|   +---checkMetaCast
|   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClassBase
|   |   +--- 
|   |   +---*
|   |   +---check
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getInstanceCount
|   |   +---
@abstract How many instances of the class have been created.
|   |   +---
@result Count of the number of instances. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-unsigned (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---getInstanceCount
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getSuperClass
|   |   +---
@abstract 'Get'ter for the super class.
|   |   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---getSuperClass
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getKmodName
|   |   +---
@abstract 'Get'ter for the name of the kmod.
|   |   +---
@result OSSymbol representing the kmod name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---        
|   +-*-const (HAS STATE)
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---getKmodName
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getClassName
|   |   +---
@abstract 'Get'ter for class name.
|   |   +---
@result cString of the class name. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-const (HAS STATE)
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---getClassName
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function getClassSize
|   |   +---
@abstract 'Get'ter for sizeof(class).
|   |   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-unsigned (HAS STATE)
|   +--- 
|   +---int
|   +--- 
|   +---getClassSize
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function alloc
|   |   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   |   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   |   +---
@result Pointer to a new object with a retain count of 1. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   |   +---)
|   +--- 
|   +---const
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDeclareCommonStructors
|   |   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDeclareCommonStructors
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---private
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---superClass
|   |   +---;
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---metaClass
|   |   +---;
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---MetaClass
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---public
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---{
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---public
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---virtual
|   |   +--- 
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---}
|   |   +--- 
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---friend
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---)
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDeclareDefaultStructors
|   |   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   |   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   |   +---
@param className Name of class. NO QUOTES. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDeclareDefaultStructors
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---         
|   |   +---private
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---superClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---metaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---MetaClass
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---public
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---{
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---virtual
|   |   +--- 
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---}
|   |   +--- 
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---friend
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---)
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDeclareAbstractStructors
|   |   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   |   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   |   +---
@param className Name of class. NO QUOTES. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDeclareAbstractStructors
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---         
|   |   +---private
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---superClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---metaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---static
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---MetaClass
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---public
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---{
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---public
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---virtual
|   |   +--- 
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---}
|   |   +--- 
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---friend
|   |   +--- 
|   |   +---class
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---;
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---                                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---)
|   |   +---;
|   |   +---                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---virtual
|   |   +--- 
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +---                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---private
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Make primary constructor private in abstract 
|   |   |   +---*/
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---protected
|   |   +---:
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassWithInit
|   |   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   |   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassWithInit
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---,
|   |   +--- 
|   |   +---init
|   |   +---)
|   |   +---        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +--- 
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---#
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---init
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineAbstractStructors
|   |   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineAbstractStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---0
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineDefaultStructors
|   |   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineDefaultStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---new
|   |   +--- 
|   |   +---className
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---:
|   |   +--- 
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---&
|   |   +---gMetaClass
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---gMetaClass
|   |   +---.
|   |   +---instanceConstructed
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   |   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   |   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---,
|   |   +--- 
|   |   +---init
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---  
|   |   +---init
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndStructorsWithInit
|   |   +---
@abstract See OSDefineMetaClassAndStructors
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   |   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndStructorsWithInit
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---,
|   |   +--- 
|   |   +---init
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---  
|   |   +---init
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---new
|   |   +--- 
|   |   +---className
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---&
|   |   +---gMetaClass
|   |   +---)
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---gMetaClass
|   |   +---.
|   |   +---instanceConstructed
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +--- 
|   |   +---Helpers 
|   |   +---*/
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClass
|   |   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClass
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---                        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---  
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---  
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndStructors
|   |   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +---        
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---   
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---   
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---new
|   |   +--- 
|   |   +---className
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---:
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---&
|   |   +---gMetaClass
|   |   +---)
|   |   +---                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---gMetaClass
|   |   +---.
|   |   +---instanceConstructed
|   |   +---(
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---/*
|   |   +---!
|   |   +--- @function OSDefineMetaClassAndAbstractStructors
|   |   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   |   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   |   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   |   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   |   +---*/
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSDefineMetaClassAndAbstractStructors
|   |   +---(
|   |   +---className
|   |   +---,
|   |   +--- 
|   |   +---superClassName
|   |   +---)
|   |   +--- 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class global data 
|   |   |   +---*/
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---metaClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---superClass
|   |   +--- 
|   |   +---=
|   |   +---                           
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---&
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---::
|   |   +---gMetaClass
|   |   +---;
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---Class member functions 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +---meta
|   |   +---)
|   |   +---                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---            
|   |   +---:
|   |   +---   
|   |   +---superClassName
|   |   +--- 
|   |   +---(
|   |   +---meta
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---~
|   |   +--- 
|   |   +---className
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---}
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---const
|   |   +--- 
|   |   +---OSMetaClass
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---getMetaClass
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +---                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---&
|   |   +---gMetaClass
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                                                  
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---/*
|   |   |   +--- 
|   |   |   +---The ::MetaClass constructor 
|   |   |   +---*/
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---MetaClass
|   |   +---(
|   |   +---)
|   |   +---                                          
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---:
|   |   +--- 
|   |   +---OSMetaClass
|   |   +---(
|   |   +---"
|   |   +---className
|   |   +---"
|   |   +---,
|   |   +--- 
|   |   +---className
|   |   +---::
|   |   +---superClass
|   |   +---,
|   |   +--- 
|   |   +---sizeof
|   |   +---(
|   |   +---className
|   |   +---)
|   |   +---)
|   |   +---   
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---        
|   |   +---{
|   |   +---   
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---                 
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---     
|   |   +---OSObject
|   |   +--- 
|   |   +---*
|   |   +--- 
|   |   +---className
|   |   +--- 
|   |   +---::
|   |   +---MetaClass
|   |   +---::
|   |   +---alloc
|   |   +---(
|   |   +---)
|   |   +--- 
|   |   +---const
|   |   +--- 
|   |   +---{
|   |   +--- 
|   |   +---return
|   |   +--- 
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Dynamic vtable patchup support routines and types
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-void (HAS STATE)
|   +--- 
|   +---reservedCalled
|   +---(
|   |   +---int
|   |   +--- 
|   |   +---ind
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDeclareReservedUnused
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---private
|   |   +---:
|   |   +---                                                                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---APPLE_KEXT_PAD_METHOD
|   |   +--- 
|   |   +---void
|   |   +--- 
|   |   +---_RESERVED
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---classname
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---index
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDeclareReservedUsed
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDefineReservedUnused
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---                
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---void
|   |   +--- 
|   |   +---classname
|   |   +--- 
|   |   +---::
|   |   +---_RESERVED
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---classname
|   |   +--- 
|   |   +---#
|   |   +---#
|   |   +--- 
|   |   +---index
|   |   +--- 
|   |   +---(
|   |   +---)
|   |   +---                         
|   |   +---\
|   |   +---[ NEWLINE ]
|   |   +---    
|   |   +---{
|   |   +--- 
|   |   +---APPLE_KEXT_PAD_IMPL
|   |   +---(
|   |   +---index
|   |   +---)
|   |   +---;
|   |   +--- 
|   |   +---}
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +-*-#define (HAS STATE)
|   |   +--- 
|   |   +---OSMetaClassDefineReservedUsed
|   |   +---(
|   |   +---classname
|   |   +---,
|   |   +--- 
|   |   +---index
|   |   +---)
|   |   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---IOKit debug internal routines.
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---printInstanceCounts
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---serializeClassDictionary
|   +---(
|   |   +---OSDictionary
|   |   +--- 
|   |   +---*
|   |   +---dict
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---private
|   +---:
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Obsolete APIs
|   |   +---[ NEWLINE ]
|   +---    
|   +-*-static (HAS STATE)
|   +--- 
|   +---OSDictionary
|   +--- 
|   +---*
|   +---getClassDictionary
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---    
|   +-*-virtual (HAS STATE)
|   +--- 
|   +---bool
|   +--- 
|   +---serialize
|   +---(
|   |   +---OSSerialize
|   |   +--- 
|   |   +---*
|   |   +---s
|   |   +---)
|   +--- 
|   +---const
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---[ NEWLINE ]
|   +---    
|   +---//
|   |   +--- 
|   |   +---Virtual Padding functions for MetaClass's
|   |   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---0
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---1
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---2
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---3
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---4
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---5
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---6
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---                   
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---[ NEWLINE ]
|   +---    
|   +-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +---  
|   +---OSMetaClass
|   +---   
|   +---7
|   +--- 
|   +---(
|   |   +---)
|   +---;
|   +--- 
|   +---[ NEWLINE ]
|   +---}
+---;
+--- 
+---[ NEWLINE ]
END OF OBJECT


OBJECT: operator new (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---operator
+--- 
+---new
+---(
|   +---size_t
|   +--- 
|   +---size
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-struct (HAS STATE)
+--- 
+---ExpansionData
+--- 
+---{
|   +--- 
|   +---}
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var reserved Reserved for future use.  (Internal use only)  
|   +---*/
+---[ NEWLINE ]
+---    
+-*-ExpansionData (HAS STATE)
+--- 
+---*
+---reserved
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var superClass Handle to the superclass' meta class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---superClassLink
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var className OSSymbol of the class' name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---className
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var classSize How big is a single instancde of this class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---classSize
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-mutable (HAS STATE)
+--- 
+---unsigned
+--- 
+---int
+--- 
+---instanceCount
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Private the default constructor 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSMetaClass (HeaderDoc::Function)
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: logError (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getMetaClassWithName (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: retain (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: release (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: release (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: taggedRetain (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getRetainCount (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getMetaClass (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSMetaClass (HeaderDoc::Function)
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: ~OSMetaClass (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: operator delete (HeaderDoc::Function)
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: preModLoad (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: checkModLoad (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: postModLoad (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: modHasInstance (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: reportModInstances (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: considerUnloads (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: allocClassWithName (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: allocClassWithName (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: allocClassWithName (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: checkMetaCastWithName (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: checkMetaCastWithName (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: checkMetaCastWithName (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: instanceConstructed (HeaderDoc::Function)
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: instanceDestructed (HeaderDoc::Function)
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: checkMetaCast (HeaderDoc::Function)
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getInstanceCount (HeaderDoc::Function)
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getSuperClass (HeaderDoc::Function)
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getKmodName (HeaderDoc::Function)
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getClassName (HeaderDoc::Function)
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getClassSize (HeaderDoc::Function)
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: alloc (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: reservedCalled (HeaderDoc::Function)
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: printInstanceCounts (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: serializeClassDictionary (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: getClassDictionary (HeaderDoc::Function)
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: serialize (HeaderDoc::Function)
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: 0 (HeaderDoc::Function)
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: 1 (HeaderDoc::Function)
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: 2 (HeaderDoc::Function)
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: 3 (HeaderDoc::Function)
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: 4 (HeaderDoc::Function)
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: 5 (HeaderDoc::Function)
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: 6 (HeaderDoc::Function)
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: 7 (HeaderDoc::Function)
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: superClassLink (HeaderDoc::Constant)
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---superClassLink
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var className OSSymbol of the class' name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---className
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var classSize How big is a single instancde of this class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---classSize
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-mutable (HAS STATE)
+--- 
+---unsigned
+--- 
+---int
+--- 
+---instanceCount
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Private the default constructor 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: superClassLink (HeaderDoc::Constant)
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---superClassLink
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var className OSSymbol of the class' name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---className
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var classSize How big is a single instancde of this class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---classSize
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-mutable (HAS STATE)
+--- 
+---unsigned
+--- 
+---int
+--- 
+---instanceCount
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Private the default constructor 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: className (HeaderDoc::Constant)
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---className
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var classSize How big is a single instancde of this class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---classSize
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-mutable (HAS STATE)
+--- 
+---unsigned
+--- 
+---int
+--- 
+---instanceCount
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Private the default constructor 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: metaClass (HeaderDoc::Constant)
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: ExpansionData (HeaderDoc::Struct)
+-*-struct (HAS STATE)
+--- 
+---ExpansionData
+--- 
+---{
|   +--- 
|   +---}
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var reserved Reserved for future use.  (Internal use only)  
|   +---*/
+---[ NEWLINE ]
+---    
+-*-ExpansionData (HAS STATE)
+--- 
+---*
+---reserved
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var superClass Handle to the superclass' meta class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---superClassLink
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var className OSSymbol of the class' name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---className
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var classSize How big is a single instancde of this class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---classSize
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-mutable (HAS STATE)
+--- 
+---unsigned
+--- 
+---int
+--- 
+---instanceCount
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Private the default constructor 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: reserved (HeaderDoc::Var)
+-*-ExpansionData (HAS STATE)
+--- 
+---*
+---reserved
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var superClass Handle to the superclass' meta class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---superClassLink
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var className OSSymbol of the class' name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---className
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var classSize How big is a single instancde of this class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---classSize
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-mutable (HAS STATE)
+--- 
+---unsigned
+--- 
+---int
+--- 
+---instanceCount
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Private the default constructor 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: classSize (HeaderDoc::Var)
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---classSize
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-mutable (HAS STATE)
+--- 
+---unsigned
+--- 
+---int
+--- 
+---instanceCount
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Private the default constructor 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: instanceCount (HeaderDoc::Var)
+-*-mutable (HAS STATE)
+--- 
+---unsigned
+--- 
+---int
+--- 
+---instanceCount
+---;
+--- 
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Private the default constructor 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Called by postModLoad
|   +---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function logError
|   +---
@abstract Given an error code log an error string using printf 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---logError
+---(
|   +---OSReturn
|   +--- 
|   +---result
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getMetaClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system
|   +---
@param name Name of the desired class's meta-class. 
|   +---
@result pointer to a meta-class object if found, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+---getMetaClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---protected
+---:
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function retain
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---retain
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---
@param when ignored. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---release
+---(
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function taggedRetain
|   +---
@abstract Retain a tagged reference in this object.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRetain
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +--- 
|   +---=
|   +--- 
|   +---0
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function release
|   +---
@abstract Release a tagged reference to this object
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---void
+--- 
+---taggedRelease
+---(
|   +---const
|   +--- 
|   +---void
|   +--- 
|   +---*
|   +---tag
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---int
|   +--- 
|   +---when
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getRetainCount
|   +---
@abstract Implement abstract but should no dynamic allocation is allowed 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---int
+--- 
+---getRetainCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---getMetaClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSMetaClass
|   +---
@abstract Constructor for OSMetaClass objects
|   +---
@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
|   +---
@param inClassName cString of the name of the class this meta-class represents.
|   +---
@param inSuperClassName cString of the name of the super class.
|   +---
@param inClassSize sizeof the class. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClass (HAS STATE)
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---inClassName
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---inSuperClass
|   +---,
|   +---[ NEWLINE ]
|   +---                
|   +---unsigned
|   +--- 
|   +---int
|   +--- 
|   +---inClassSize
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function ~OSMetaClass
|   +---
@abstract Destructor for OSMetaClass objects
|   +---
@discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading.  The destructor removes all reference's to the subclass from the runtime type information system. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---~
+---OSMetaClass
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Needs to be overriden as NULL as all OSMetaClass objects are allocated
|   +---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---statically at compile time, don't accidently try to free them.
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---operator
+--- 
+---delete
+---(
|   +---void
|   +--- 
|   +---*
|   +---,
|   +--- 
|   +---size_t
|   +---)
+--- 
+---;
+---[ NEWLINE ]
+---[ NEWLINE ]
+---public
+---:
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---const
+--- 
+---OSMetaClass
+--- 
+---*
+--- 
+---const
+--- 
+---metaClass
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function preModLoad
|   +---
@abstract Prepare the runtime type system for the load of a module.
|   +---
@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
|   +---
@param kmodName globally unique cString name of the kernel module being loaded. 
|   +---
@result If success full return a handle to be used in later calls 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---*
+---preModLoad
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkModLoad
|   +---
@abstract Check if the current load attempt is still OK.
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result true if no error's are outstanding and the system is primed to recieve more objects. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---checkModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function postModLoad
|   +---
@abstract Finish postprocessing on a kernel module's meta-classes.
|   +---
@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
|   +---
@param loadHandle Handle returned when a successful call to preModLoad is made.
|   +---
@result Error code of the first error encountered. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSReturn
+--- 
+---postModLoad
+---(
|   +---void
|   +--- 
|   +---*
|   +---loadHandle
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function modHasInstance
|   +---
@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
|   +---
@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
|   +---
@param kmodName cString of the kernel module name.
|   +---
@result true if there are any current instances of any class in the module.
|   +---[ NEWLINE ]
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---bool
+--- 
+---modHasInstance
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function reportModInstances
|   +---
@abstract Log any object that has instances in a module.
|   +---
@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
|   +---
@param kmodName cString of the kernel module name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---reportModInstances
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---kmodName
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function considerUnloads
|   +---
@abstract Schedule module unloading.
|   +---
@discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. 
|   +---*/
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---considerUnloads
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function allocClassWithName
|   +---
@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
|   +---
@param name Name of the desired class. 
|   +---
@result pointer to an new object, 0 if not found or so memory. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---allocClassWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class. 
|   +---
@param in object to be introspected. 
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSSymbol
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---OSString
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCastWithName
|   +---
@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
|   +---
@param name Name of the desired class or super class.
|   +---
@param in object to be introspected.
|   +---
@result in parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSMetaClassBase
+--- 
+---*
+---[ NEWLINE ]
+---        
+---checkMetaCastWithName
+---(
|   +---const
|   +--- 
|   +---char
|   +--- 
|   +---*
|   +---name
|   +---,
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---in
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceConstructed
|   +---
@abstract Counts the instances of the class behind this metaclass.
|   +---
@discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function.  This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use.  Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceConstructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function instanceDestructed
|   +---
@abstract Removes one instance of the class behind this metaclass.
|   +---
@discussion OSObject's free function calls this method just before it does a 'delete this' on itself.  If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---instanceDestructed
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function checkMetaCast
|   +---
@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
|   +---
@param check Pointer of object to introspect.
|   +---
@result check parameter if cast valid, 0 otherwise. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-OSMetaClassBase (HAS STATE)
+--- 
+---*
+---checkMetaCast
+---(
|   +---const
|   +--- 
|   +---OSMetaClassBase
|   +--- 
|   +---*
|   +---check
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getInstanceCount
|   +---
@abstract How many instances of the class have been created.
|   +---
@result Count of the number of instances. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getInstanceCount
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getSuperClass
|   +---
@abstract 'Get'ter for the super class.
|   +---
@result Pointer to superclass, chain ends with 0 for OSObject. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---OSMetaClass
+--- 
+---*
+---getSuperClass
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getKmodName
|   +---
@abstract 'Get'ter for the name of the kmod.
|   +---
@result OSSymbol representing the kmod name. 
|   +---*/
+---[ NEWLINE ]
+---        
+-*-const (HAS STATE)
+--- 
+---OSSymbol
+--- 
+---*
+---getKmodName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassName
|   +---
@abstract 'Get'ter for class name.
|   +---
@result cString of the class name. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-const (HAS STATE)
+--- 
+---char
+--- 
+---*
+---getClassName
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function getClassSize
|   +---
@abstract 'Get'ter for sizeof(class).
|   +---
@result sizeof of class that this OSMetaClass instance represents. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-unsigned (HAS STATE)
+--- 
+---int
+--- 
+---getClassSize
+---(
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function alloc
|   +---
@abstract Allocate an instance of the class that this OSMetaClass instance represents.
|   +---
@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. 
|   +---
@result Pointer to a new object with a retain count of 1. 
|   +---*/
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---OSObject
+--- 
+---*
+---alloc
+---(
|   +---)
+--- 
+---const
+--- 
+---=
+--- 
+---0
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareCommonStructors
|   +---
@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDeclareCommonStructors (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareCommonStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareDefaultStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDeclareDefaultStructors (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareDefaultStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDeclareAbstractStructors
|   +---
@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
|   +---
@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.
|   +---
@param className Name of class. NO QUOTES. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDeclareAbstractStructors (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDeclareAbstractStructors
|   +---(
|   +---className
|   +---)
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---         
|   +---private
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---superClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---metaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---static
|   +--- 
|   +---class
|   +--- 
|   +---MetaClass
|   +--- 
|   +---:
|   +--- 
|   +---public
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---{
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---public
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---MetaClass
|   +---(
|   +---)
|   +---;
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---virtual
|   +--- 
|   +---OSObject
|   +--- 
|   +---*
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---}
|   +--- 
|   +---gMetaClass
|   +---;
|   +---                                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---friend
|   +--- 
|   +---class
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---;
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---                                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---)
|   +---;
|   +---                                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---virtual
|   +--- 
|   +---~
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +---                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---className
|   +--- 
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---/*
|   |   +--- 
|   |   +---Make primary constructor private in abstract 
|   |   +---*/
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---protected
|   +---:
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassWithInit
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineMetaClassWithInit (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---#
|   +---className
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineAbstractStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineAbstractStructors (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---0
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineDefaultStructors
|   +---
@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineDefaultStructors (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineDefaultStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                        
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +--- 
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructorsWithInit
|   +---
@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineMetaClassAndAbstractStructorsWithInit (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructorsWithInit
|   +---
@abstract See OSDefineMetaClassAndStructors
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS.
|   +---
@param init Name of a function to call after the OSMetaClass is constructed. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineMetaClassAndStructorsWithInit (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructorsWithInit
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---,
|   +--- 
|   +---init
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---init
|   +---;
|   +--- 
|   +---}
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---/*
|   +--- 
|   +---Helpers 
|   +---*/
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClass
|   +---
@abstract Define an OSMetaClass instance, used for backward compatiblility only.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineMetaClass (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClass
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---                        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---  
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---  
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                 
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                         
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---  
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineMetaClassAndStructors (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +---        
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---new
|   +--- 
|   +---className
|   +---;
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +--- 
|   +---(
|   +---)
|   +--- 
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---&
|   +---gMetaClass
|   +---)
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---gMetaClass
|   +---.
|   +---instanceConstructed
|   +---(
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---/*
|   +---!
|   +--- @function OSDefineMetaClassAndAbstractStructors
|   +---
@abstract Define an OSMetaClass subclass and the runtime system routines.
|   +---
@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
|   +---
@param className Name of class. NO QUOTES and NO MACROS.
|   +---
@param superClassName Name of super class. NO QUOTES and NO MACROS. 
|   +---*/
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSDefineMetaClassAndAbstractStructors (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSDefineMetaClassAndAbstractStructors
|   +---(
|   +---className
|   +---,
|   +--- 
|   +---superClassName
|   +---)
|   +--- 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---/*
|   |   +--- 
|   |   +---Class global data 
|   |   +---*/
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---metaClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---const
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---superClass
|   +--- 
|   +---=
|   +---                           
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---&
|   +---   
|   +---superClassName
|   +--- 
|   +---::
|   +---gMetaClass
|   +---;
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---Class member functions 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +--- 
|   +---className
|   +---(
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +---meta
|   +---)
|   +---                          
|   +---\
|   +---[ NEWLINE ]
|   +---            
|   +---:
|   +---   
|   +---superClassName
|   +--- 
|   +---(
|   +---meta
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---~
|   +--- 
|   +---className
|   +---(
|   +---)
|   +--- 
|   +---{
|   +--- 
|   +---}
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---const
|   +--- 
|   +---OSMetaClass
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---getMetaClass
|   +---(
|   +---)
|   +--- 
|   +---const
|   +---                  
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---&
|   +---gMetaClass
|   +---;
|   +--- 
|   +---}
|   +---                                                  
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---/*
|   |   +--- 
|   |   +---The ::MetaClass constructor 
|   |   +---*/
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---MetaClass
|   +---(
|   +---)
|   +---                                          
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---:
|   +--- 
|   +---OSMetaClass
|   +---(
|   +---"
|   +---className
|   +---"
|   +---,
|   +--- 
|   +---className
|   +---::
|   +---superClass
|   +---,
|   +--- 
|   +---sizeof
|   +---(
|   +---className
|   +---)
|   +---)
|   +---   
|   +---\
|   +---[ NEWLINE ]
|   +---        
|   +---{
|   +---   
|   +---;
|   +--- 
|   +---}
|   +---                 
|   +---\
|   +---[ NEWLINE ]
|   +---     
|   +---OSObject
|   +--- 
|   +---*
|   +--- 
|   +---className
|   +--- 
|   +---::
|   +---MetaClass
|   +---::
|   +---alloc
|   +---(
|   +---)
|   +--- 
|   +---const
|   +--- 
|   +---{
|   +--- 
|   +---return
|   +--- 
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Dynamic vtable patchup support routines and types
|   +---[ NEWLINE ]
+---    
+-*-void (HAS STATE)
+--- 
+---reservedCalled
+---(
|   +---int
|   +--- 
|   +---ind
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSMetaClassDeclareReservedUnused (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---private
|   +---:
|   +---                                                                
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---APPLE_KEXT_PAD_METHOD
|   +--- 
|   +---void
|   +--- 
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSMetaClassDeclareReservedUsed (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDeclareReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSMetaClassDefineReservedUnused (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUnused
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---                
|   +---\
|   +---[ NEWLINE ]
|   +---void
|   +--- 
|   +---classname
|   +--- 
|   +---::
|   +---_RESERVED
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---classname
|   +--- 
|   +---#
|   +---#
|   +--- 
|   +---index
|   +--- 
|   +---(
|   +---)
|   +---                         
|   +---\
|   +---[ NEWLINE ]
|   +---    
|   +---{
|   +--- 
|   +---APPLE_KEXT_PAD_IMPL
|   +---(
|   +---index
|   +---)
|   +---;
|   +--- 
|   +---}
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT


OBJECT: OSMetaClassDefineReservedUsed (HeaderDoc::PDefine)
+-*-#define (HAS STATE)
|   +--- 
|   +---OSMetaClassDefineReservedUsed
|   +---(
|   +---classname
|   +---,
|   +--- 
|   +---index
|   +---)
|   +---[ NEWLINE ]
-=-=-=-=-=-=- EODEC -=-=-=-=-=-=-
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---IOKit debug internal routines.
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---printInstanceCounts
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---void
+--- 
+---serializeClassDictionary
+---(
|   +---OSDictionary
|   +--- 
|   +---*
|   +---dict
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---private
+---:
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Obsolete APIs
|   +---[ NEWLINE ]
+---    
+-*-static (HAS STATE)
+--- 
+---OSDictionary
+--- 
+---*
+---getClassDictionary
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---    
+-*-virtual (HAS STATE)
+--- 
+---bool
+--- 
+---serialize
+---(
|   +---OSSerialize
|   +--- 
|   +---*
|   +---s
|   +---)
+--- 
+---const
+---;
+--- 
+---[ NEWLINE ]
+---[ NEWLINE ]
+---    
+---//
|   +--- 
|   +---Virtual Padding functions for MetaClass's
|   +---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---0
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---1
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---2
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---3
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---4
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---5
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---6
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---                   
+---[ NEWLINE ]
+---    
+---private
+---:
+---                                                                
+---[ NEWLINE ]
+---    
+-*-APPLE_KEXT_PAD_METHOD (HAS STATE)
+--- 
+---void
+--- 
+---_RESERVED
+---  
+---OSMetaClass
+---   
+---7
+--- 
+---(
|   +---)
+---;
+--- 
+---[ NEWLINE ]
+---}
END OF OBJECT



-=: HTML OUTPUT OF PARSE TREES :=-
OBJECT: OSMetaClass (HeaderDoc::CPPClass)
	<span class="keyword">class</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> : <span class="keyword">private</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> {  
	    <span class="keyword">private</span>: <span class="comment">// Can never be allocated must be created at compile time</span> 
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="keyword">operator</span> <!-- a logicalPath="//test_ref/cpp/instm/new //test_ref/cpp/clm/new //test_ref/cpp/intfcm/new //test_ref/cpp/intfm/new //test_ref/cpp/func/new //test_ref/cpp/ftmplt/new //test_ref/cpp/defn/new //test_ref/cpp/macro/new //test_ref/doc/anysymbol/new" machineGenerated="true" --><span class="function">new</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/size_t //test_ref/cpp/tdef/size_t //test_ref/cpp/tag/size_t //test_ref/cpp/struct/size_t //test_ref/cpp/intf/size_t //test_ref/doc/anysymbol/size_t" machineGenerated="true" --><span class="type">size_t</span><!-- /a --> <span class="param">size</span>);  
	    <span class="keyword">struct</span> <!-- a logicalPath="//test_ref/cpp/cl/ExpansionData //test_ref/cpp/tdef/ExpansionData //test_ref/cpp/tag/ExpansionData //test_ref/cpp/struct/ExpansionData //test_ref/cpp/intf/ExpansionData //test_ref/doc/anysymbol/ExpansionData" machineGenerated="true" --><span class="type">ExpansionData</span><!-- /a --> {
	        };  
	    <span class="comment">/*! @var reserved Reserved for future use.  (Internal use only)  </span>
	        <span class="comment">*/</span>
	    <!-- a logicalPath="//test_ref/cpp/cl/ExpansionData //test_ref/cpp/tdef/ExpansionData //test_ref/cpp/tag/ExpansionData //test_ref/cpp/struct/ExpansionData //test_ref/cpp/intf/ExpansionData //test_ref/doc/anysymbol/ExpansionData" machineGenerated="true" --><span class="type">ExpansionData</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/econst/reserved //test_ref/cpp/data/reserved //test_ref/cpp/clconst/reserved " machineGenerated="true" --><span class="var">reserved</span><!-- /a -->;  
	    <span class="comment">/*! @var superClass Handle to the superclass' meta class. */</span>
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/econst/superClassLink //test_ref/cpp/data/superClassLink //test_ref/cpp/clconst/superClassLink " machineGenerated="true" --><span class="var">superClassLink</span><!-- /a -->;  
	    <span class="comment">/*! @var className OSSymbol of the class' name. */</span>
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className " machineGenerated="true" --><span class="var">className</span><!-- /a -->;  
	    <span class="comment">/*! @var classSize How big is a single instancde of this class. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/econst/classSize //test_ref/cpp/data/classSize //test_ref/cpp/clconst/classSize " machineGenerated="true" --><span class="var">classSize</span><!-- /a -->;  
	    <span class="comment">/*! @var instanceCount Roughly number of instances of the object.  Used primarily as a code in use flag. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">mutable</span> <span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/econst/instanceCount //test_ref/cpp/data/instanceCount //test_ref/cpp/clconst/instanceCount " machineGenerated="true" --><span class="var">instanceCount</span><!-- /a -->;  
	    <span class="comment">/*! @function OSMetaClass</span>
	        <span class="comment">*/</span>
	    <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="function">OSMetaClass</span><!-- /a -->();  
	    <span class="comment">// Called by postModLoad</span> 
	    <span class="comment">/*! @function logError</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/logError //test_ref/cpp/clm/logError //test_ref/cpp/intfcm/logError //test_ref/cpp/intfm/logError //test_ref/cpp/func/logError //test_ref/cpp/ftmplt/logError //test_ref/cpp/defn/logError //test_ref/cpp/macro/logError //test_ref/doc/anysymbol/logError" machineGenerated="true" --><span class="function">logError</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/OSReturn //test_ref/cpp/tdef/OSReturn //test_ref/cpp/tag/OSReturn //test_ref/cpp/struct/OSReturn //test_ref/cpp/intf/OSReturn //test_ref/doc/anysymbol/OSReturn" machineGenerated="true" --><span class="type">OSReturn</span><!-- /a --> <span class="param">result</span>);  
	    <span class="keyword">public</span>:  <span class="comment">/*! @function getMetaClassWithName
	@abstract Lookup a meta-class in the runtime type information system
	@param name Name of the desired class's meta-class. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/getMetaClassWithName //test_ref/cpp/clm/getMetaClassWithName //test_ref/cpp/intfcm/getMetaClassWithName //test_ref/cpp/intfm/getMetaClassWithName //test_ref/cpp/func/getMetaClassWithName //test_ref/cpp/ftmplt/getMetaClassWithName //test_ref/cpp/defn/getMetaClassWithName //test_ref/cpp/macro/getMetaClassWithName //test_ref/doc/anysymbol/getMetaClassWithName" machineGenerated="true" --><span class="function">getMetaClassWithName</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><span class="param">name</span>);  
	    <span class="keyword">protected</span>: <span class="comment">/*! @function retain</span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/retain //test_ref/cpp/clm/retain //test_ref/cpp/intfcm/retain //test_ref/cpp/intfm/retain //test_ref/cpp/func/retain //test_ref/cpp/ftmplt/retain //test_ref/cpp/defn/retain //test_ref/cpp/macro/retain //test_ref/doc/anysymbol/retain" machineGenerated="true" --><span class="function">retain</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function release</span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/release //test_ref/cpp/clm/release //test_ref/cpp/intfcm/release //test_ref/cpp/intfm/release //test_ref/cpp/func/release //test_ref/cpp/ftmplt/release //test_ref/cpp/defn/release //test_ref/cpp/macro/release //test_ref/doc/anysymbol/release" machineGenerated="true" --><span class="function">release</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function release
	@abstract Implement abstract but should no dynamic allocation is allowed </span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/release //test_ref/cpp/clm/release //test_ref/cpp/intfcm/release //test_ref/cpp/intfm/release //test_ref/cpp/func/release //test_ref/cpp/ftmplt/release //test_ref/cpp/defn/release //test_ref/cpp/macro/release //test_ref/doc/anysymbol/release" machineGenerated="true" --><span class="function">release</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">when</span>) <span class="keyword">const</span>;  
	    <span class="comment">/*! @function taggedRetain
	@abstract Retain a tagged reference in this object.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/taggedRetain //test_ref/cpp/clm/taggedRetain //test_ref/cpp/intfcm/taggedRetain //test_ref/cpp/intfm/taggedRetain //test_ref/cpp/func/taggedRetain //test_ref/cpp/ftmplt/taggedRetain //test_ref/cpp/defn/taggedRetain //test_ref/cpp/macro/taggedRetain //test_ref/doc/anysymbol/taggedRetain" machineGenerated="true" --><span class="function">taggedRetain</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/cl/tag //test_ref/cpp/tdef/tag //test_ref/cpp/tag/tag //test_ref/cpp/struct/tag //test_ref/cpp/intf/tag //test_ref/doc/anysymbol/tag" machineGenerated="true" --><span class="type">tag</span><!-- /a --> = <span class="number">0</span>) <span class="keyword">const</span>;  
	    <span class="comment">/*! @function release
	@abstract Release a tagged reference to this object</span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/taggedRelease //test_ref/cpp/clm/taggedRelease //test_ref/cpp/intfcm/taggedRelease //test_ref/cpp/intfm/taggedRelease //test_ref/cpp/func/taggedRelease //test_ref/cpp/ftmplt/taggedRelease //test_ref/cpp/defn/taggedRelease //test_ref/cpp/macro/taggedRelease //test_ref/doc/anysymbol/taggedRelease" machineGenerated="true" --><span class="function">taggedRelease</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/cl/tag //test_ref/cpp/tdef/tag //test_ref/cpp/tag/tag //test_ref/cpp/struct/tag //test_ref/cpp/intf/tag //test_ref/doc/anysymbol/tag" machineGenerated="true" --><span class="type">tag</span><!-- /a --> = <span class="number">0</span>) <span class="keyword">const</span>;  
	    <span class="comment">/*! @function release
	@abstract Release a tagged reference to this object</span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/taggedRelease //test_ref/cpp/clm/taggedRelease //test_ref/cpp/intfcm/taggedRelease //test_ref/cpp/intfm/taggedRelease //test_ref/cpp/func/taggedRelease //test_ref/cpp/ftmplt/taggedRelease //test_ref/cpp/defn/taggedRelease //test_ref/cpp/macro/taggedRelease //test_ref/doc/anysymbol/taggedRelease" machineGenerated="true" --><span class="function">taggedRelease</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="param">tag</span>,
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">when</span>) <span class="keyword">const</span>;  
	    <span class="comment">/*! @function getRetainCount</span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/getRetainCount //test_ref/cpp/clm/getRetainCount //test_ref/cpp/intfcm/getRetainCount //test_ref/cpp/intfm/getRetainCount //test_ref/cpp/func/getRetainCount //test_ref/cpp/ftmplt/getRetainCount //test_ref/cpp/defn/getRetainCount //test_ref/cpp/macro/getRetainCount //test_ref/doc/anysymbol/getRetainCount" machineGenerated="true" --><span class="function">getRetainCount</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="keyword">virtual</span> <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="function">getMetaClass</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function OSMetaClass
	@abstract Constructor for OSMetaClass objects
	@discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class.  This function stores the currently constructing OSMetaClass instance away for later processing.  See preModLoad and postModLoad.
	@param inClassName cString of the name of the class this meta-class represents.
	@param inSuperClassName cString of the name of the super class.</span>
	        <span class="comment">*/</span>
	    <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="function">OSMetaClass</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">inClassName</span>, 
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><span class="param">inSuperClass</span>, 
	        <span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">inClassSize</span>);  
	    <span class="comment">/*! @function ~OSMetaClass
	@abstract Destructor for OSMetaClass objects</span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> ~<!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="function">OSMetaClass</span><!-- /a -->();  
	    <span class="comment">// Needs to be overriden as NULL as all OSMetaClass objects are allocated</span> 
	    <span class="comment">// statically at compile time, don't accidently try to free them.</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="keyword">operator</span> <!-- a logicalPath="//test_ref/cpp/instm/delete //test_ref/cpp/clm/delete //test_ref/cpp/intfcm/delete //test_ref/cpp/intfm/delete //test_ref/cpp/func/delete //test_ref/cpp/ftmplt/delete //test_ref/cpp/defn/delete //test_ref/cpp/macro/delete //test_ref/doc/anysymbol/delete" machineGenerated="true" --><span class="function">delete</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="param">*</span>,
	        <span class="param">size_t</span>);  
	    <span class="keyword">public</span>: <span class="keyword">static</span> <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass " machineGenerated="true" --><span class="var">metaClass</span><!-- /a -->;  
	    <span class="comment">/*! @function preModLoad
	@abstract Prepare the runtime type system for the load of a module.
	@discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad.  preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function.  Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
	@param kmodName globally unique cString name of the kernel module being loaded. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/preModLoad //test_ref/cpp/clm/preModLoad //test_ref/cpp/intfcm/preModLoad //test_ref/cpp/intfm/preModLoad //test_ref/cpp/func/preModLoad //test_ref/cpp/ftmplt/preModLoad //test_ref/cpp/defn/preModLoad //test_ref/cpp/macro/preModLoad //test_ref/doc/anysymbol/preModLoad" machineGenerated="true" --><span class="function">preModLoad</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">kmodName</span>);  
	    <span class="comment">/*! @function checkModLoad
	@abstract Check if the current load attempt is still OK.
	@param loadHandle Handle returned when a successful call to preModLoad is made.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/bool //test_ref/cpp/tdef/bool //test_ref/cpp/tag/bool //test_ref/cpp/struct/bool //test_ref/cpp/intf/bool //test_ref/doc/anysymbol/bool" machineGenerated="true" --><span class="type">bool</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/checkModLoad //test_ref/cpp/clm/checkModLoad //test_ref/cpp/intfcm/checkModLoad //test_ref/cpp/intfm/checkModLoad //test_ref/cpp/func/checkModLoad //test_ref/cpp/ftmplt/checkModLoad //test_ref/cpp/defn/checkModLoad //test_ref/cpp/macro/checkModLoad //test_ref/doc/anysymbol/checkModLoad" machineGenerated="true" --><span class="function">checkModLoad</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="param">loadHandle</span>);  
	    <span class="comment">/*! @function postModLoad
	@abstract Finish postprocessing on a kernel module's meta-classes.
	@discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases.  These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules.  Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call.  postModLoad is the second phase of processing.  Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction.  Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase. 
	@param loadHandle Handle returned when a successful call to preModLoad is made.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSReturn //test_ref/cpp/tdef/OSReturn //test_ref/cpp/tag/OSReturn //test_ref/cpp/struct/OSReturn //test_ref/cpp/intf/OSReturn //test_ref/doc/anysymbol/OSReturn" machineGenerated="true" --><span class="type">OSReturn</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/postModLoad //test_ref/cpp/clm/postModLoad //test_ref/cpp/intfcm/postModLoad //test_ref/cpp/intfm/postModLoad //test_ref/cpp/func/postModLoad //test_ref/cpp/ftmplt/postModLoad //test_ref/cpp/defn/postModLoad //test_ref/cpp/macro/postModLoad //test_ref/doc/anysymbol/postModLoad" machineGenerated="true" --><span class="function">postModLoad</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="param">loadHandle</span>);  
	    <span class="comment">/*! @function modHasInstance
	@abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
	@discussion Check all meta-classes associated with the module name and check their instance counts.  This function is used to check to see if a module can be unloaded.  Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
	@param kmodName cString of the kernel module name.
	@result true if there are any current instances of any class in the module.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/bool //test_ref/cpp/tdef/bool //test_ref/cpp/tag/bool //test_ref/cpp/struct/bool //test_ref/cpp/intf/bool //test_ref/doc/anysymbol/bool" machineGenerated="true" --><span class="type">bool</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/modHasInstance //test_ref/cpp/clm/modHasInstance //test_ref/cpp/intfcm/modHasInstance //test_ref/cpp/intfm/modHasInstance //test_ref/cpp/func/modHasInstance //test_ref/cpp/ftmplt/modHasInstance //test_ref/cpp/defn/modHasInstance //test_ref/cpp/macro/modHasInstance //test_ref/doc/anysymbol/modHasInstance" machineGenerated="true" --><span class="function">modHasInstance</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">kmodName</span>);  
	    <span class="comment">/*! @function reportModInstances
	@abstract Log any object that has instances in a module.
	@discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances.  This function will report which classes still have instances.  It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/reportModInstances //test_ref/cpp/clm/reportModInstances //test_ref/cpp/intfcm/reportModInstances //test_ref/cpp/intfm/reportModInstances //test_ref/cpp/func/reportModInstances //test_ref/cpp/ftmplt/reportModInstances //test_ref/cpp/defn/reportModInstances //test_ref/cpp/macro/reportModInstances //test_ref/doc/anysymbol/reportModInstances" machineGenerated="true" --><span class="function">reportModInstances</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">kmodName</span>);  
	    <span class="comment">/*! @function considerUnloads
	@abstract Schedule module unloading.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/considerUnloads //test_ref/cpp/clm/considerUnloads //test_ref/cpp/intfcm/considerUnloads //test_ref/cpp/intfm/considerUnloads //test_ref/cpp/func/considerUnloads //test_ref/cpp/ftmplt/considerUnloads //test_ref/cpp/defn/considerUnloads //test_ref/cpp/macro/considerUnloads //test_ref/doc/anysymbol/considerUnloads" machineGenerated="true" --><span class="function">considerUnloads</span><!-- /a -->();  
	    <span class="comment">/*! @function allocClassWithName
	@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
	@param name Name of the desired class. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/allocClassWithName //test_ref/cpp/clm/allocClassWithName //test_ref/cpp/intfcm/allocClassWithName //test_ref/cpp/intfm/allocClassWithName //test_ref/cpp/func/allocClassWithName //test_ref/cpp/ftmplt/allocClassWithName //test_ref/cpp/defn/allocClassWithName //test_ref/cpp/macro/allocClassWithName //test_ref/doc/anysymbol/allocClassWithName" machineGenerated="true" --><span class="function">allocClassWithName</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><span class="param">name</span>);  
	    <span class="comment">/*! @function allocClassWithName
	@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
	@param name Name of the desired class. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/allocClassWithName //test_ref/cpp/clm/allocClassWithName //test_ref/cpp/intfcm/allocClassWithName //test_ref/cpp/intfm/allocClassWithName //test_ref/cpp/func/allocClassWithName //test_ref/cpp/ftmplt/allocClassWithName //test_ref/cpp/defn/allocClassWithName //test_ref/cpp/macro/allocClassWithName //test_ref/doc/anysymbol/allocClassWithName" machineGenerated="true" --><span class="function">allocClassWithName</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSString //test_ref/cpp/tdef/OSString //test_ref/cpp/tag/OSString //test_ref/cpp/struct/OSString //test_ref/cpp/intf/OSString //test_ref/doc/anysymbol/OSString" machineGenerated="true" --><span class="type">OSString</span><!-- /a --> <span class="type">*</span><span class="param">name</span>);  
	    <span class="comment">/*! @function allocClassWithName
	@abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
	@param name Name of the desired class. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/allocClassWithName //test_ref/cpp/clm/allocClassWithName //test_ref/cpp/intfcm/allocClassWithName //test_ref/cpp/intfm/allocClassWithName //test_ref/cpp/func/allocClassWithName //test_ref/cpp/ftmplt/allocClassWithName //test_ref/cpp/defn/allocClassWithName //test_ref/cpp/macro/allocClassWithName //test_ref/doc/anysymbol/allocClassWithName" machineGenerated="true" --><span class="function">allocClassWithName</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">name</span>);  
	    <span class="comment">/*! @function checkMetaCastWithName
	@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
	@param name Name of the desired class or super class. 
	@param in object to be introspected. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span> <!-- a logicalPath="//test_ref/cpp/instm/checkMetaCastWithName //test_ref/cpp/clm/checkMetaCastWithName //test_ref/cpp/intfcm/checkMetaCastWithName //test_ref/cpp/intfm/checkMetaCastWithName //test_ref/cpp/func/checkMetaCastWithName //test_ref/cpp/ftmplt/checkMetaCastWithName //test_ref/cpp/defn/checkMetaCastWithName //test_ref/cpp/macro/checkMetaCastWithName //test_ref/doc/anysymbol/checkMetaCastWithName" machineGenerated="true" --><span class="function">checkMetaCastWithName</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><span class="param">name</span>,
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">in</span>);  
	    <span class="comment">/*! @function checkMetaCastWithName
	@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
	@param name Name of the desired class or super class.
	@param in object to be introspected.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span> <!-- a logicalPath="//test_ref/cpp/instm/checkMetaCastWithName //test_ref/cpp/clm/checkMetaCastWithName //test_ref/cpp/intfcm/checkMetaCastWithName //test_ref/cpp/intfm/checkMetaCastWithName //test_ref/cpp/func/checkMetaCastWithName //test_ref/cpp/ftmplt/checkMetaCastWithName //test_ref/cpp/defn/checkMetaCastWithName //test_ref/cpp/macro/checkMetaCastWithName //test_ref/doc/anysymbol/checkMetaCastWithName" machineGenerated="true" --><span class="function">checkMetaCastWithName</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSString //test_ref/cpp/tdef/OSString //test_ref/cpp/tag/OSString //test_ref/cpp/struct/OSString //test_ref/cpp/intf/OSString //test_ref/doc/anysymbol/OSString" machineGenerated="true" --><span class="type">OSString</span><!-- /a --> <span class="type">*</span><span class="param">name</span>,
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">in</span>);  
	    <span class="comment">/*! @function checkMetaCastWithName
	@abstract Introspect an objects inheritance tree looking for a class of the given name.  Basis of MacOSX's kernel dynamic casting mechanism.
	@param name Name of the desired class or super class.
	@param in object to be introspected.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span> <!-- a logicalPath="//test_ref/cpp/instm/checkMetaCastWithName //test_ref/cpp/clm/checkMetaCastWithName //test_ref/cpp/intfcm/checkMetaCastWithName //test_ref/cpp/intfm/checkMetaCastWithName //test_ref/cpp/func/checkMetaCastWithName //test_ref/cpp/ftmplt/checkMetaCastWithName //test_ref/cpp/defn/checkMetaCastWithName //test_ref/cpp/macro/checkMetaCastWithName //test_ref/doc/anysymbol/checkMetaCastWithName" machineGenerated="true" --><span class="function">checkMetaCastWithName</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">name</span>,
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">in</span>);   
	    <span class="comment">/*! @function instanceConstructed
	@abstract Counts the instances of the class behind this metaclass.</span>
	        <span class="comment">*/</span>
	    <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/instanceConstructed //test_ref/cpp/clm/instanceConstructed //test_ref/cpp/intfcm/instanceConstructed //test_ref/cpp/intfm/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="function">instanceConstructed</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function instanceDestructed
	@abstract Removes one instance of the class behind this metaclass.</span>
	        <span class="comment">*/</span>
	    <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/instanceDestructed //test_ref/cpp/clm/instanceDestructed //test_ref/cpp/intfcm/instanceDestructed //test_ref/cpp/intfm/instanceDestructed //test_ref/cpp/func/instanceDestructed //test_ref/cpp/ftmplt/instanceDestructed //test_ref/cpp/defn/instanceDestructed //test_ref/cpp/macro/instanceDestructed //test_ref/doc/anysymbol/instanceDestructed" machineGenerated="true" --><span class="function">instanceDestructed</span><!-- /a -->() <span class="keyword">const</span>;   
	    <span class="comment">/*! @function checkMetaCast
	@abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
	@param check Pointer of object to introspect.</span>
	        <span class="comment">*/</span>
	    <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/checkMetaCast //test_ref/cpp/clm/checkMetaCast //test_ref/cpp/intfcm/checkMetaCast //test_ref/cpp/intfm/checkMetaCast //test_ref/cpp/func/checkMetaCast //test_ref/cpp/ftmplt/checkMetaCast //test_ref/cpp/defn/checkMetaCast //test_ref/cpp/macro/checkMetaCast //test_ref/doc/anysymbol/checkMetaCast" machineGenerated="true" --><span class="function">checkMetaCast</span><!-- /a -->(
	        <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">check</span>) <span class="keyword">const</span>;   
	    <span class="comment">/*! @function getInstanceCount
	@abstract How many instances of the class have been created.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/getInstanceCount //test_ref/cpp/clm/getInstanceCount //test_ref/cpp/intfcm/getInstanceCount //test_ref/cpp/intfm/getInstanceCount //test_ref/cpp/func/getInstanceCount //test_ref/cpp/ftmplt/getInstanceCount //test_ref/cpp/defn/getInstanceCount //test_ref/cpp/macro/getInstanceCount //test_ref/doc/anysymbol/getInstanceCount" machineGenerated="true" --><span class="function">getInstanceCount</span><!-- /a -->() <span class="keyword">const</span>;   
	    <span class="comment">/*! @function getSuperClass
	@abstract 'Get'ter for the super class.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/getSuperClass //test_ref/cpp/clm/getSuperClass //test_ref/cpp/intfcm/getSuperClass //test_ref/cpp/intfm/getSuperClass //test_ref/cpp/func/getSuperClass //test_ref/cpp/ftmplt/getSuperClass //test_ref/cpp/defn/getSuperClass //test_ref/cpp/macro/getSuperClass //test_ref/doc/anysymbol/getSuperClass" machineGenerated="true" --><span class="function">getSuperClass</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function getKmodName
	@abstract 'Get'ter for the name of the kmod.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/getKmodName //test_ref/cpp/clm/getKmodName //test_ref/cpp/intfcm/getKmodName //test_ref/cpp/intfm/getKmodName //test_ref/cpp/func/getKmodName //test_ref/cpp/ftmplt/getKmodName //test_ref/cpp/defn/getKmodName //test_ref/cpp/macro/getKmodName //test_ref/doc/anysymbol/getKmodName" machineGenerated="true" --><span class="function">getKmodName</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function getClassName
	@abstract 'Get'ter for class name.</span>
	        <span class="comment">*/</span>
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/getClassName //test_ref/cpp/clm/getClassName //test_ref/cpp/intfcm/getClassName //test_ref/cpp/intfm/getClassName //test_ref/cpp/func/getClassName //test_ref/cpp/ftmplt/getClassName //test_ref/cpp/defn/getClassName //test_ref/cpp/macro/getClassName //test_ref/doc/anysymbol/getClassName" machineGenerated="true" --><span class="function">getClassName</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function getClassSize
	@abstract 'Get'ter for sizeof(class).</span>
	        <span class="comment">*/</span>
	    <span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/getClassSize //test_ref/cpp/clm/getClassSize //test_ref/cpp/intfcm/getClassSize //test_ref/cpp/intfm/getClassSize //test_ref/cpp/func/getClassSize //test_ref/cpp/ftmplt/getClassSize //test_ref/cpp/defn/getClassSize //test_ref/cpp/macro/getClassSize //test_ref/doc/anysymbol/getClassSize" machineGenerated="true" --><span class="function">getClassSize</span><!-- /a -->() <span class="keyword">const</span>;  
	    <span class="comment">/*! @function alloc
	@abstract Allocate an instance of the class that this OSMetaClass instance represents.
	@discussion This alloc function is analogous to the old ObjC class alloc method.  Typically not used by clients as the static function allocClassWithName is more generally useful.  Infact that function is implemented in terms of this  virtual function.  All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically. </span>
	        <span class="comment">*/</span>
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="function">alloc</span><!-- /a -->() <span class="keyword">const</span> = <span class="number">0</span>;  
	    <span class="comment">/*! @function OSDeclareCommonStructors
	@abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv.  DO NOT USE.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDeclareCommonStructors //test_ref/cpp/tdef/OSDeclareCommonStructors //test_ref/cpp/tag/OSDeclareCommonStructors //test_ref/cpp/struct/OSDeclareCommonStructors //test_ref/cpp/intf/OSDeclareCommonStructors //test_ref/cpp/econst/OSDeclareCommonStructors //test_ref/cpp/data/OSDeclareCommonStructors //test_ref/cpp/clconst/OSDeclareCommonStructors //test_ref/cpp/instm/OSDeclareCommonStructors //test_ref/cpp/clm/OSDeclareCommonStructors //test_ref/cpp/intfcm/OSDeclareCommonStructors //test_ref/cpp/intfm/OSDeclareCommonStructors //test_ref/cpp/func/OSDeclareCommonStructors //test_ref/cpp/ftmplt/OSDeclareCommonStructors //test_ref/cpp/defn/OSDeclareCommonStructors //test_ref/cpp/macro/OSDeclareCommonStructors //test_ref/doc/com/intfm/OSDeclareCommonStructors //test_ref/doc/anysymbol/OSDeclareCommonStructors" machineGenerated="true" --><span class="preprocessor">OSDeclareCommonStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/class //test_ref/cpp/clconst/class //test_ref/cpp/instm/class //test_ref/cpp/clm/class //test_ref/cpp/intfcm/class //test_ref/cpp/intfm/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <span class="preprocessor">:</span> <span class="preprocessor">public</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">{</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">}</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/friend //test_ref/cpp/tdef/friend //test_ref/cpp/tag/friend //test_ref/cpp/struct/friend //test_ref/cpp/intf/friend //test_ref/cpp/econst/friend //test_ref/cpp/data/friend //test_ref/cpp/clconst/friend //test_ref/cpp/instm/friend //test_ref/cpp/clm/friend //test_ref/cpp/intfcm/friend //test_ref/cpp/intfm/friend //test_ref/cpp/func/friend //test_ref/cpp/ftmplt/friend //test_ref/cpp/defn/friend //test_ref/cpp/macro/friend //test_ref/doc/com/intfm/friend //test_ref/doc/anysymbol/friend" machineGenerated="true" --><span class="preprocessor">friend</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/class //test_ref/cpp/clconst/class //test_ref/cpp/instm/class //test_ref/cpp/clm/class //test_ref/cpp/intfcm/class //test_ref/cpp/intfm/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">protected</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span>   
	    <span class="comment">/*! @function OSDeclareDefaultStructors
	@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
	@discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces.  By convention it should be 'called' immediately after the opening brace in a class declaration.  It leaves the current privacy state as 'protected:'.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDeclareDefaultStructors //test_ref/cpp/tdef/OSDeclareDefaultStructors //test_ref/cpp/tag/OSDeclareDefaultStructors //test_ref/cpp/struct/OSDeclareDefaultStructors //test_ref/cpp/intf/OSDeclareDefaultStructors //test_ref/cpp/econst/OSDeclareDefaultStructors //test_ref/cpp/data/OSDeclareDefaultStructors //test_ref/cpp/clconst/OSDeclareDefaultStructors //test_ref/cpp/instm/OSDeclareDefaultStructors //test_ref/cpp/clm/OSDeclareDefaultStructors //test_ref/cpp/intfcm/OSDeclareDefaultStructors //test_ref/cpp/intfm/OSDeclareDefaultStructors //test_ref/cpp/func/OSDeclareDefaultStructors //test_ref/cpp/ftmplt/OSDeclareDefaultStructors //test_ref/cpp/defn/OSDeclareDefaultStructors //test_ref/cpp/macro/OSDeclareDefaultStructors //test_ref/doc/com/intfm/OSDeclareDefaultStructors //test_ref/doc/anysymbol/OSDeclareDefaultStructors" machineGenerated="true" --><span class="preprocessor">OSDeclareDefaultStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/class //test_ref/cpp/clconst/class //test_ref/cpp/instm/class //test_ref/cpp/clm/class //test_ref/cpp/intfcm/class //test_ref/cpp/intfm/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <span class="preprocessor">:</span> <span class="preprocessor">public</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">{</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">}</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/friend //test_ref/cpp/tdef/friend //test_ref/cpp/tag/friend //test_ref/cpp/struct/friend //test_ref/cpp/intf/friend //test_ref/cpp/econst/friend //test_ref/cpp/data/friend //test_ref/cpp/clconst/friend //test_ref/cpp/instm/friend //test_ref/cpp/clm/friend //test_ref/cpp/intfcm/friend //test_ref/cpp/intfm/friend //test_ref/cpp/func/friend //test_ref/cpp/ftmplt/friend //test_ref/cpp/defn/friend //test_ref/cpp/macro/friend //test_ref/doc/com/intfm/friend //test_ref/doc/anysymbol/friend" machineGenerated="true" --><span class="preprocessor">friend</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/class //test_ref/cpp/clconst/class //test_ref/cpp/instm/class //test_ref/cpp/clm/class //test_ref/cpp/intfcm/class //test_ref/cpp/intfm/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">protected</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">protected</span><span class="preprocessor">:</span>   
	    <span class="comment">/*! @function OSDeclareAbstractStructors
	@abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces. 
	@discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class.  It leaves the current privacy state as 'protected:'.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDeclareAbstractStructors //test_ref/cpp/tdef/OSDeclareAbstractStructors //test_ref/cpp/tag/OSDeclareAbstractStructors //test_ref/cpp/struct/OSDeclareAbstractStructors //test_ref/cpp/intf/OSDeclareAbstractStructors //test_ref/cpp/econst/OSDeclareAbstractStructors //test_ref/cpp/data/OSDeclareAbstractStructors //test_ref/cpp/clconst/OSDeclareAbstractStructors //test_ref/cpp/instm/OSDeclareAbstractStructors //test_ref/cpp/clm/OSDeclareAbstractStructors //test_ref/cpp/intfcm/OSDeclareAbstractStructors //test_ref/cpp/intfm/OSDeclareAbstractStructors //test_ref/cpp/func/OSDeclareAbstractStructors //test_ref/cpp/ftmplt/OSDeclareAbstractStructors //test_ref/cpp/defn/OSDeclareAbstractStructors //test_ref/cpp/macro/OSDeclareAbstractStructors //test_ref/doc/com/intfm/OSDeclareAbstractStructors //test_ref/doc/anysymbol/OSDeclareAbstractStructors" machineGenerated="true" --><span class="preprocessor">OSDeclareAbstractStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/static //test_ref/cpp/clconst/static //test_ref/cpp/instm/static //test_ref/cpp/clm/static //test_ref/cpp/intfcm/static //test_ref/cpp/intfm/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/class //test_ref/cpp/clconst/class //test_ref/cpp/instm/class //test_ref/cpp/clm/class //test_ref/cpp/intfcm/class //test_ref/cpp/intfm/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <span class="preprocessor">:</span> <span class="preprocessor">public</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">{</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">}</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/friend //test_ref/cpp/tdef/friend //test_ref/cpp/tag/friend //test_ref/cpp/struct/friend //test_ref/cpp/intf/friend //test_ref/cpp/econst/friend //test_ref/cpp/data/friend //test_ref/cpp/clconst/friend //test_ref/cpp/instm/friend //test_ref/cpp/clm/friend //test_ref/cpp/intfcm/friend //test_ref/cpp/intfm/friend //test_ref/cpp/func/friend //test_ref/cpp/ftmplt/friend //test_ref/cpp/defn/friend //test_ref/cpp/macro/friend //test_ref/doc/com/intfm/friend //test_ref/doc/anysymbol/friend" machineGenerated="true" --><span class="preprocessor">friend</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/class //test_ref/cpp/clconst/class //test_ref/cpp/instm/class //test_ref/cpp/clm/class //test_ref/cpp/intfcm/class //test_ref/cpp/intfm/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">protected</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/virtual //test_ref/cpp/instm/virtual //test_ref/cpp/clm/virtual //test_ref/cpp/intfcm/virtual //test_ref/cpp/intfm/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="comment"><span class="comment">/*</span> <span class="comment">Make primary constructor private in abstract </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">protected</span><span class="preprocessor">:</span>  
	    <span class="comment">/*! @function OSDefineMetaClassWithInit
	@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
	@param className Name of class. NO QUOTES and NO MACROS.
	@param superClassName Name of super class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassWithInit //test_ref/cpp/tdef/OSDefineMetaClassWithInit //test_ref/cpp/tag/OSDefineMetaClassWithInit //test_ref/cpp/struct/OSDefineMetaClassWithInit //test_ref/cpp/intf/OSDefineMetaClassWithInit //test_ref/cpp/econst/OSDefineMetaClassWithInit //test_ref/cpp/data/OSDefineMetaClassWithInit //test_ref/cpp/clconst/OSDefineMetaClassWithInit //test_ref/cpp/instm/OSDefineMetaClassWithInit //test_ref/cpp/clm/OSDefineMetaClassWithInit //test_ref/cpp/intfcm/OSDefineMetaClassWithInit //test_ref/cpp/intfm/OSDefineMetaClassWithInit //test_ref/cpp/func/OSDefineMetaClassWithInit //test_ref/cpp/ftmplt/OSDefineMetaClassWithInit //test_ref/cpp/defn/OSDefineMetaClassWithInit //test_ref/cpp/macro/OSDefineMetaClassWithInit //test_ref/doc/com/intfm/OSDefineMetaClassWithInit //test_ref/doc/anysymbol/OSDefineMetaClassWithInit" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassWithInit</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/init //test_ref/cpp/clconst/init //test_ref/cpp/instm/init //test_ref/cpp/clm/init //test_ref/cpp/intfcm/init //test_ref/cpp/intfm/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">#</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/sizeof //test_ref/cpp/instm/sizeof //test_ref/cpp/clm/sizeof //test_ref/cpp/intfcm/sizeof //test_ref/cpp/intfm/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/init //test_ref/cpp/clconst/init //test_ref/cpp/instm/init //test_ref/cpp/clm/init //test_ref/cpp/intfcm/init //test_ref/cpp/intfm/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="comment">/*! @function OSDefineAbstractStructors
	@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
	@param className Name of class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineAbstractStructors //test_ref/cpp/tdef/OSDefineAbstractStructors //test_ref/cpp/tag/OSDefineAbstractStructors //test_ref/cpp/struct/OSDefineAbstractStructors //test_ref/cpp/intf/OSDefineAbstractStructors //test_ref/cpp/econst/OSDefineAbstractStructors //test_ref/cpp/data/OSDefineAbstractStructors //test_ref/cpp/clconst/OSDefineAbstractStructors //test_ref/cpp/instm/OSDefineAbstractStructors //test_ref/cpp/clm/OSDefineAbstractStructors //test_ref/cpp/intfcm/OSDefineAbstractStructors //test_ref/cpp/intfm/OSDefineAbstractStructors //test_ref/cpp/func/OSDefineAbstractStructors //test_ref/cpp/ftmplt/OSDefineAbstractStructors //test_ref/cpp/defn/OSDefineAbstractStructors //test_ref/cpp/macro/OSDefineAbstractStructors //test_ref/doc/com/intfm/OSDefineAbstractStructors //test_ref/doc/anysymbol/OSDefineAbstractStructors" machineGenerated="true" --><span class="preprocessor">OSDefineAbstractStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">0</span><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="comment">/*! @function OSDefineDefaultStructors
	@abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv.  DO NOT USE.
	@param className Name of class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineDefaultStructors //test_ref/cpp/tdef/OSDefineDefaultStructors //test_ref/cpp/tag/OSDefineDefaultStructors //test_ref/cpp/struct/OSDefineDefaultStructors //test_ref/cpp/intf/OSDefineDefaultStructors //test_ref/cpp/econst/OSDefineDefaultStructors //test_ref/cpp/data/OSDefineDefaultStructors //test_ref/cpp/clconst/OSDefineDefaultStructors //test_ref/cpp/instm/OSDefineDefaultStructors //test_ref/cpp/clm/OSDefineDefaultStructors //test_ref/cpp/intfcm/OSDefineDefaultStructors //test_ref/cpp/intfm/OSDefineDefaultStructors //test_ref/cpp/func/OSDefineDefaultStructors //test_ref/cpp/ftmplt/OSDefineDefaultStructors //test_ref/cpp/defn/OSDefineDefaultStructors //test_ref/cpp/macro/OSDefineDefaultStructors //test_ref/doc/com/intfm/OSDefineDefaultStructors //test_ref/doc/anysymbol/OSDefineDefaultStructors" machineGenerated="true" --><span class="preprocessor">OSDefineDefaultStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/new //test_ref/cpp/tdef/new //test_ref/cpp/tag/new //test_ref/cpp/struct/new //test_ref/cpp/intf/new //test_ref/cpp/econst/new //test_ref/cpp/data/new //test_ref/cpp/clconst/new //test_ref/cpp/instm/new //test_ref/cpp/clm/new //test_ref/cpp/intfcm/new //test_ref/cpp/intfm/new //test_ref/cpp/func/new //test_ref/cpp/ftmplt/new //test_ref/cpp/defn/new //test_ref/cpp/macro/new //test_ref/doc/com/intfm/new //test_ref/doc/anysymbol/new" machineGenerated="true" --><span class="preprocessor">new</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">.</span><!-- a logicalPath="//test_ref/cpp/cl/instanceConstructed //test_ref/cpp/tdef/instanceConstructed //test_ref/cpp/tag/instanceConstructed //test_ref/cpp/struct/instanceConstructed //test_ref/cpp/intf/instanceConstructed //test_ref/cpp/econst/instanceConstructed //test_ref/cpp/data/instanceConstructed //test_ref/cpp/clconst/instanceConstructed //test_ref/cpp/instm/instanceConstructed //test_ref/cpp/clm/instanceConstructed //test_ref/cpp/intfcm/instanceConstructed //test_ref/cpp/intfm/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/com/intfm/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="preprocessor">instanceConstructed</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>   
	    <span class="comment">/*! @function OSDefineMetaClassAndAbstractStructorsWithInit
	@abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
	@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
	@param className Name of class. NO QUOTES and NO MACROS.
	@param superClassName Name of super class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/tdef/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/tag/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/struct/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/intf/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/econst/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/data/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/clconst/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/instm/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/clm/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/intfcm/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/intfm/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/func/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/ftmplt/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/defn/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/macro/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/doc/com/intfm/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/doc/anysymbol/OSDefineMetaClassAndAbstractStructorsWithInit" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndAbstractStructorsWithInit</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/init //test_ref/cpp/clconst/init //test_ref/cpp/instm/init //test_ref/cpp/clm/init //test_ref/cpp/intfcm/init //test_ref/cpp/intfm/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/sizeof //test_ref/cpp/instm/sizeof //test_ref/cpp/clm/sizeof //test_ref/cpp/intfcm/sizeof //test_ref/cpp/intfm/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/init //test_ref/cpp/clconst/init //test_ref/cpp/instm/init //test_ref/cpp/clm/init //test_ref/cpp/intfcm/init //test_ref/cpp/intfm/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="comment">/*! @function OSDefineMetaClassAndStructorsWithInit
	@abstract See OSDefineMetaClassAndStructors
	@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.  Once the OSMetaClass has been constructed, at load time, call the init routine.  NB you can not rely on the order of execution of the init routines.
	@param className Name of class. NO QUOTES and NO MACROS.
	@param superClassName Name of super class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/tdef/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/tag/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/struct/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/intf/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/econst/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/data/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/clconst/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/instm/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/clm/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/intfcm/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/intfm/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/func/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/ftmplt/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/defn/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/macro/OSDefineMetaClassAndStructorsWithInit //test_ref/doc/com/intfm/OSDefineMetaClassAndStructorsWithInit //test_ref/doc/anysymbol/OSDefineMetaClassAndStructorsWithInit" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndStructorsWithInit</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/init //test_ref/cpp/clconst/init //test_ref/cpp/instm/init //test_ref/cpp/clm/init //test_ref/cpp/intfcm/init //test_ref/cpp/intfm/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/sizeof //test_ref/cpp/instm/sizeof //test_ref/cpp/clm/sizeof //test_ref/cpp/intfcm/sizeof //test_ref/cpp/intfm/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/init //test_ref/cpp/clconst/init //test_ref/cpp/instm/init //test_ref/cpp/clm/init //test_ref/cpp/intfcm/init //test_ref/cpp/intfm/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/new //test_ref/cpp/tdef/new //test_ref/cpp/tag/new //test_ref/cpp/struct/new //test_ref/cpp/intf/new //test_ref/cpp/econst/new //test_ref/cpp/data/new //test_ref/cpp/clconst/new //test_ref/cpp/instm/new //test_ref/cpp/clm/new //test_ref/cpp/intfcm/new //test_ref/cpp/intfm/new //test_ref/cpp/func/new //test_ref/cpp/ftmplt/new //test_ref/cpp/defn/new //test_ref/cpp/macro/new //test_ref/doc/com/intfm/new //test_ref/doc/anysymbol/new" machineGenerated="true" --><span class="preprocessor">new</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">.</span><!-- a logicalPath="//test_ref/cpp/cl/instanceConstructed //test_ref/cpp/tdef/instanceConstructed //test_ref/cpp/tag/instanceConstructed //test_ref/cpp/struct/instanceConstructed //test_ref/cpp/intf/instanceConstructed //test_ref/cpp/econst/instanceConstructed //test_ref/cpp/data/instanceConstructed //test_ref/cpp/clconst/instanceConstructed //test_ref/cpp/instm/instanceConstructed //test_ref/cpp/clm/instanceConstructed //test_ref/cpp/intfcm/instanceConstructed //test_ref/cpp/intfm/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/com/intfm/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="preprocessor">instanceConstructed</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="comment">/* Helpers */</span>
	    <span class="comment">/*! @function OSDefineMetaClass
	@abstract Define an OSMetaClass instance, used for backward compatiblility only.
	@param className Name of class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClass //test_ref/cpp/tdef/OSDefineMetaClass //test_ref/cpp/tag/OSDefineMetaClass //test_ref/cpp/struct/OSDefineMetaClass //test_ref/cpp/intf/OSDefineMetaClass //test_ref/cpp/econst/OSDefineMetaClass //test_ref/cpp/data/OSDefineMetaClass //test_ref/cpp/clconst/OSDefineMetaClass //test_ref/cpp/instm/OSDefineMetaClass //test_ref/cpp/clm/OSDefineMetaClass //test_ref/cpp/intfcm/OSDefineMetaClass //test_ref/cpp/intfm/OSDefineMetaClass //test_ref/cpp/func/OSDefineMetaClass //test_ref/cpp/ftmplt/OSDefineMetaClass //test_ref/cpp/defn/OSDefineMetaClass //test_ref/cpp/macro/OSDefineMetaClass //test_ref/doc/com/intfm/OSDefineMetaClass //test_ref/doc/anysymbol/OSDefineMetaClass" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClass</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/sizeof //test_ref/cpp/instm/sizeof //test_ref/cpp/clm/sizeof //test_ref/cpp/intfcm/sizeof //test_ref/cpp/intfm/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="comment">/*! @function OSDefineMetaClassAndStructors
	@abstract Define an OSMetaClass subclass and the runtime system routines.
	@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
	@param className Name of class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndStructors //test_ref/cpp/tdef/OSDefineMetaClassAndStructors //test_ref/cpp/tag/OSDefineMetaClassAndStructors //test_ref/cpp/struct/OSDefineMetaClassAndStructors //test_ref/cpp/intf/OSDefineMetaClassAndStructors //test_ref/cpp/econst/OSDefineMetaClassAndStructors //test_ref/cpp/data/OSDefineMetaClassAndStructors //test_ref/cpp/clconst/OSDefineMetaClassAndStructors //test_ref/cpp/instm/OSDefineMetaClassAndStructors //test_ref/cpp/clm/OSDefineMetaClassAndStructors //test_ref/cpp/intfcm/OSDefineMetaClassAndStructors //test_ref/cpp/intfm/OSDefineMetaClassAndStructors //test_ref/cpp/func/OSDefineMetaClassAndStructors //test_ref/cpp/ftmplt/OSDefineMetaClassAndStructors //test_ref/cpp/defn/OSDefineMetaClassAndStructors //test_ref/cpp/macro/OSDefineMetaClassAndStructors //test_ref/doc/com/intfm/OSDefineMetaClassAndStructors //test_ref/doc/anysymbol/OSDefineMetaClassAndStructors" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/sizeof //test_ref/cpp/instm/sizeof //test_ref/cpp/clm/sizeof //test_ref/cpp/intfcm/sizeof //test_ref/cpp/intfm/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/new //test_ref/cpp/tdef/new //test_ref/cpp/tag/new //test_ref/cpp/struct/new //test_ref/cpp/intf/new //test_ref/cpp/econst/new //test_ref/cpp/data/new //test_ref/cpp/clconst/new //test_ref/cpp/instm/new //test_ref/cpp/clm/new //test_ref/cpp/intfcm/new //test_ref/cpp/intfm/new //test_ref/cpp/func/new //test_ref/cpp/ftmplt/new //test_ref/cpp/defn/new //test_ref/cpp/macro/new //test_ref/doc/com/intfm/new //test_ref/doc/anysymbol/new" machineGenerated="true" --><span class="preprocessor">new</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">.</span><!-- a logicalPath="//test_ref/cpp/cl/instanceConstructed //test_ref/cpp/tdef/instanceConstructed //test_ref/cpp/tag/instanceConstructed //test_ref/cpp/struct/instanceConstructed //test_ref/cpp/intf/instanceConstructed //test_ref/cpp/econst/instanceConstructed //test_ref/cpp/data/instanceConstructed //test_ref/cpp/clconst/instanceConstructed //test_ref/cpp/instm/instanceConstructed //test_ref/cpp/clm/instanceConstructed //test_ref/cpp/intfcm/instanceConstructed //test_ref/cpp/intfm/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/com/intfm/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="preprocessor">instanceConstructed</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="comment">/*! @function OSDefineMetaClassAndAbstractStructors
	@abstract Define an OSMetaClass subclass and the runtime system routines.
	@discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class.  In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
	@param className Name of class. NO QUOTES and NO MACROS.</span>
	        <span class="comment">*/</span>
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/tdef/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/tag/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/struct/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/intf/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/econst/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/data/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/clconst/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/instm/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/clm/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/intfcm/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/intfm/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/func/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/ftmplt/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/defn/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/macro/OSDefineMetaClassAndAbstractStructors //test_ref/doc/com/intfm/OSDefineMetaClassAndAbstractStructors //test_ref/doc/anysymbol/OSDefineMetaClassAndAbstractStructors" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndAbstractStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/metaClass //test_ref/cpp/instm/metaClass //test_ref/cpp/clm/metaClass //test_ref/cpp/intfcm/metaClass //test_ref/cpp/intfm/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/superClassName //test_ref/cpp/instm/superClassName //test_ref/cpp/clm/superClassName //test_ref/cpp/intfcm/superClassName //test_ref/cpp/intfm/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/meta //test_ref/cpp/instm/meta //test_ref/cpp/clm/meta //test_ref/cpp/intfcm/meta //test_ref/cpp/intfm/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/getMetaClass //test_ref/cpp/instm/getMetaClass //test_ref/cpp/clm/getMetaClass //test_ref/cpp/intfcm/getMetaClass //test_ref/cpp/intfm/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/gMetaClass //test_ref/cpp/instm/gMetaClass //test_ref/cpp/clm/gMetaClass //test_ref/cpp/intfcm/gMetaClass //test_ref/cpp/intfm/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass //test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/superClass //test_ref/cpp/instm/superClass //test_ref/cpp/clm/superClass //test_ref/cpp/intfcm/superClass //test_ref/cpp/intfm/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/sizeof //test_ref/cpp/instm/sizeof //test_ref/cpp/clm/sizeof //test_ref/cpp/intfcm/sizeof //test_ref/cpp/intfm/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <span class="preprocessor">;</span>
	        <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSObject //test_ref/cpp/instm/OSObject //test_ref/cpp/clm/OSObject //test_ref/cpp/intfcm/OSObject //test_ref/cpp/intfm/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/className //test_ref/cpp/clconst/className //test_ref/cpp/instm/className //test_ref/cpp/clm/className //test_ref/cpp/intfcm/className //test_ref/cpp/intfm/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/MetaClass //test_ref/cpp/instm/MetaClass //test_ref/cpp/clm/MetaClass //test_ref/cpp/intfcm/MetaClass //test_ref/cpp/intfm/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/alloc //test_ref/cpp/instm/alloc //test_ref/cpp/clm/alloc //test_ref/cpp/intfcm/alloc //test_ref/cpp/intfm/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/const //test_ref/cpp/clconst/const //test_ref/cpp/instm/const //test_ref/cpp/clm/const //test_ref/cpp/intfcm/const //test_ref/cpp/intfm/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/return //test_ref/cpp/clconst/return //test_ref/cpp/instm/return //test_ref/cpp/clm/return //test_ref/cpp/intfcm/return //test_ref/cpp/intfm/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="comment">// Dynamic vtable patchup support routines and types</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/reservedCalled //test_ref/cpp/clm/reservedCalled //test_ref/cpp/intfcm/reservedCalled //test_ref/cpp/intfm/reservedCalled //test_ref/cpp/func/reservedCalled //test_ref/cpp/ftmplt/reservedCalled //test_ref/cpp/defn/reservedCalled //test_ref/cpp/macro/reservedCalled //test_ref/doc/anysymbol/reservedCalled" machineGenerated="true" --><span class="function">reservedCalled</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">ind</span>) <span class="keyword">const</span>;  
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassDeclareReservedUnused //test_ref/cpp/tdef/OSMetaClassDeclareReservedUnused //test_ref/cpp/tag/OSMetaClassDeclareReservedUnused //test_ref/cpp/struct/OSMetaClassDeclareReservedUnused //test_ref/cpp/intf/OSMetaClassDeclareReservedUnused //test_ref/cpp/econst/OSMetaClassDeclareReservedUnused //test_ref/cpp/data/OSMetaClassDeclareReservedUnused //test_ref/cpp/clconst/OSMetaClassDeclareReservedUnused //test_ref/cpp/instm/OSMetaClassDeclareReservedUnused //test_ref/cpp/clm/OSMetaClassDeclareReservedUnused //test_ref/cpp/intfcm/OSMetaClassDeclareReservedUnused //test_ref/cpp/intfm/OSMetaClassDeclareReservedUnused //test_ref/cpp/func/OSMetaClassDeclareReservedUnused //test_ref/cpp/ftmplt/OSMetaClassDeclareReservedUnused //test_ref/cpp/defn/OSMetaClassDeclareReservedUnused //test_ref/cpp/macro/OSMetaClassDeclareReservedUnused //test_ref/doc/com/intfm/OSMetaClassDeclareReservedUnused //test_ref/doc/anysymbol/OSMetaClassDeclareReservedUnused" machineGenerated="true" --><span class="preprocessor">OSMetaClassDeclareReservedUnused</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/classname //test_ref/cpp/instm/classname //test_ref/cpp/clm/classname //test_ref/cpp/intfcm/classname //test_ref/cpp/intfm/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/index //test_ref/cpp/clconst/index //test_ref/cpp/instm/index //test_ref/cpp/clm/index //test_ref/cpp/intfcm/index //test_ref/cpp/intfm/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/cpp/econst/APPLE_KEXT_PAD_METHOD //test_ref/cpp/data/APPLE_KEXT_PAD_METHOD //test_ref/cpp/clconst/APPLE_KEXT_PAD_METHOD //test_ref/cpp/instm/APPLE_KEXT_PAD_METHOD //test_ref/cpp/clm/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intfcm/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intfm/APPLE_KEXT_PAD_METHOD //test_ref/cpp/func/APPLE_KEXT_PAD_METHOD //test_ref/cpp/ftmplt/APPLE_KEXT_PAD_METHOD //test_ref/cpp/defn/APPLE_KEXT_PAD_METHOD //test_ref/cpp/macro/APPLE_KEXT_PAD_METHOD //test_ref/doc/com/intfm/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="preprocessor">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/cpp/econst/void //test_ref/cpp/data/void //test_ref/cpp/clconst/void //test_ref/cpp/instm/void //test_ref/cpp/clm/void //test_ref/cpp/intfcm/void //test_ref/cpp/intfm/void //test_ref/cpp/func/void //test_ref/cpp/ftmplt/void //test_ref/cpp/defn/void //test_ref/cpp/macro/void //test_ref/doc/com/intfm/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="preprocessor">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/cpp/econst/_RESERVED //test_ref/cpp/data/_RESERVED //test_ref/cpp/clconst/_RESERVED //test_ref/cpp/instm/_RESERVED //test_ref/cpp/clm/_RESERVED //test_ref/cpp/intfcm/_RESERVED //test_ref/cpp/intfm/_RESERVED //test_ref/cpp/func/_RESERVED //test_ref/cpp/ftmplt/_RESERVED //test_ref/cpp/defn/_RESERVED //test_ref/cpp/macro/_RESERVED //test_ref/doc/com/intfm/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="preprocessor">_RESERVED</span><!-- /a --> <span class="preprocessor">#</span><span class="preprocessor">#</span> <!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/classname //test_ref/cpp/instm/classname //test_ref/cpp/clm/classname //test_ref/cpp/intfcm/classname //test_ref/cpp/intfm/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --> <span class="preprocessor">#</span><span class="preprocessor">#</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/index //test_ref/cpp/clconst/index //test_ref/cpp/instm/index //test_ref/cpp/clm/index //test_ref/cpp/intfcm/index //test_ref/cpp/intfm/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span>  
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassDeclareReservedUsed //test_ref/cpp/tdef/OSMetaClassDeclareReservedUsed //test_ref/cpp/tag/OSMetaClassDeclareReservedUsed //test_ref/cpp/struct/OSMetaClassDeclareReservedUsed //test_ref/cpp/intf/OSMetaClassDeclareReservedUsed //test_ref/cpp/econst/OSMetaClassDeclareReservedUsed //test_ref/cpp/data/OSMetaClassDeclareReservedUsed //test_ref/cpp/clconst/OSMetaClassDeclareReservedUsed //test_ref/cpp/instm/OSMetaClassDeclareReservedUsed //test_ref/cpp/clm/OSMetaClassDeclareReservedUsed //test_ref/cpp/intfcm/OSMetaClassDeclareReservedUsed //test_ref/cpp/intfm/OSMetaClassDeclareReservedUsed //test_ref/cpp/func/OSMetaClassDeclareReservedUsed //test_ref/cpp/ftmplt/OSMetaClassDeclareReservedUsed //test_ref/cpp/defn/OSMetaClassDeclareReservedUsed //test_ref/cpp/macro/OSMetaClassDeclareReservedUsed //test_ref/doc/com/intfm/OSMetaClassDeclareReservedUsed //test_ref/doc/anysymbol/OSMetaClassDeclareReservedUsed" machineGenerated="true" --><span class="preprocessor">OSMetaClassDeclareReservedUsed</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/classname //test_ref/cpp/instm/classname //test_ref/cpp/clm/classname //test_ref/cpp/intfcm/classname //test_ref/cpp/intfm/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/index //test_ref/cpp/clconst/index //test_ref/cpp/instm/index //test_ref/cpp/clm/index //test_ref/cpp/intfcm/index //test_ref/cpp/intfm/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --><span class="preprocessor">)</span>  
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassDefineReservedUnused //test_ref/cpp/tdef/OSMetaClassDefineReservedUnused //test_ref/cpp/tag/OSMetaClassDefineReservedUnused //test_ref/cpp/struct/OSMetaClassDefineReservedUnused //test_ref/cpp/intf/OSMetaClassDefineReservedUnused //test_ref/cpp/econst/OSMetaClassDefineReservedUnused //test_ref/cpp/data/OSMetaClassDefineReservedUnused //test_ref/cpp/clconst/OSMetaClassDefineReservedUnused //test_ref/cpp/instm/OSMetaClassDefineReservedUnused //test_ref/cpp/clm/OSMetaClassDefineReservedUnused //test_ref/cpp/intfcm/OSMetaClassDefineReservedUnused //test_ref/cpp/intfm/OSMetaClassDefineReservedUnused //test_ref/cpp/func/OSMetaClassDefineReservedUnused //test_ref/cpp/ftmplt/OSMetaClassDefineReservedUnused //test_ref/cpp/defn/OSMetaClassDefineReservedUnused //test_ref/cpp/macro/OSMetaClassDefineReservedUnused //test_ref/doc/com/intfm/OSMetaClassDefineReservedUnused //test_ref/doc/anysymbol/OSMetaClassDefineReservedUnused" machineGenerated="true" --><span class="preprocessor">OSMetaClassDefineReservedUnused</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/classname //test_ref/cpp/instm/classname //test_ref/cpp/clm/classname //test_ref/cpp/intfcm/classname //test_ref/cpp/intfm/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/index //test_ref/cpp/clconst/index //test_ref/cpp/instm/index //test_ref/cpp/clm/index //test_ref/cpp/intfcm/index //test_ref/cpp/intfm/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/cpp/econst/void //test_ref/cpp/data/void //test_ref/cpp/clconst/void //test_ref/cpp/instm/void //test_ref/cpp/clm/void //test_ref/cpp/intfcm/void //test_ref/cpp/intfm/void //test_ref/cpp/func/void //test_ref/cpp/ftmplt/void //test_ref/cpp/defn/void //test_ref/cpp/macro/void //test_ref/doc/com/intfm/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="preprocessor">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/classname //test_ref/cpp/instm/classname //test_ref/cpp/clm/classname //test_ref/cpp/intfcm/classname //test_ref/cpp/intfm/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/cpp/econst/_RESERVED //test_ref/cpp/data/_RESERVED //test_ref/cpp/clconst/_RESERVED //test_ref/cpp/instm/_RESERVED //test_ref/cpp/clm/_RESERVED //test_ref/cpp/intfcm/_RESERVED //test_ref/cpp/intfm/_RESERVED //test_ref/cpp/func/_RESERVED //test_ref/cpp/ftmplt/_RESERVED //test_ref/cpp/defn/_RESERVED //test_ref/cpp/macro/_RESERVED //test_ref/doc/com/intfm/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="preprocessor">_RESERVED</span><!-- /a --> <span class="preprocessor">#</span><span class="preprocessor">#</span> <!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/classname //test_ref/cpp/instm/classname //test_ref/cpp/clm/classname //test_ref/cpp/intfcm/classname //test_ref/cpp/intfm/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --> <span class="preprocessor">#</span><span class="preprocessor">#</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/index //test_ref/cpp/clconst/index //test_ref/cpp/instm/index //test_ref/cpp/clm/index //test_ref/cpp/intfcm/index //test_ref/cpp/intfm/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	        <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_IMPL //test_ref/cpp/tdef/APPLE_KEXT_PAD_IMPL //test_ref/cpp/tag/APPLE_KEXT_PAD_IMPL //test_ref/cpp/struct/APPLE_KEXT_PAD_IMPL //test_ref/cpp/intf/APPLE_KEXT_PAD_IMPL //test_ref/cpp/econst/APPLE_KEXT_PAD_IMPL //test_ref/cpp/data/APPLE_KEXT_PAD_IMPL //test_ref/cpp/clconst/APPLE_KEXT_PAD_IMPL //test_ref/cpp/instm/APPLE_KEXT_PAD_IMPL //test_ref/cpp/clm/APPLE_KEXT_PAD_IMPL //test_ref/cpp/intfcm/APPLE_KEXT_PAD_IMPL //test_ref/cpp/intfm/APPLE_KEXT_PAD_IMPL //test_ref/cpp/func/APPLE_KEXT_PAD_IMPL //test_ref/cpp/ftmplt/APPLE_KEXT_PAD_IMPL //test_ref/cpp/defn/APPLE_KEXT_PAD_IMPL //test_ref/cpp/macro/APPLE_KEXT_PAD_IMPL //test_ref/doc/com/intfm/APPLE_KEXT_PAD_IMPL //test_ref/doc/anysymbol/APPLE_KEXT_PAD_IMPL" machineGenerated="true" --><span class="preprocessor">APPLE_KEXT_PAD_IMPL</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/index //test_ref/cpp/clconst/index //test_ref/cpp/instm/index //test_ref/cpp/clm/index //test_ref/cpp/intfcm/index //test_ref/cpp/intfm/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">;</span>
	        <span class="preprocessor">}</span>  
	    <span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassDefineReservedUsed //test_ref/cpp/tdef/OSMetaClassDefineReservedUsed //test_ref/cpp/tag/OSMetaClassDefineReservedUsed //test_ref/cpp/struct/OSMetaClassDefineReservedUsed //test_ref/cpp/intf/OSMetaClassDefineReservedUsed //test_ref/cpp/econst/OSMetaClassDefineReservedUsed //test_ref/cpp/data/OSMetaClassDefineReservedUsed //test_ref/cpp/clconst/OSMetaClassDefineReservedUsed //test_ref/cpp/instm/OSMetaClassDefineReservedUsed //test_ref/cpp/clm/OSMetaClassDefineReservedUsed //test_ref/cpp/intfcm/OSMetaClassDefineReservedUsed //test_ref/cpp/intfm/OSMetaClassDefineReservedUsed //test_ref/cpp/func/OSMetaClassDefineReservedUsed //test_ref/cpp/ftmplt/OSMetaClassDefineReservedUsed //test_ref/cpp/defn/OSMetaClassDefineReservedUsed //test_ref/cpp/macro/OSMetaClassDefineReservedUsed //test_ref/doc/com/intfm/OSMetaClassDefineReservedUsed //test_ref/doc/anysymbol/OSMetaClassDefineReservedUsed" machineGenerated="true" --><span class="preprocessor">OSMetaClassDefineReservedUsed</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/classname //test_ref/cpp/instm/classname //test_ref/cpp/clm/classname //test_ref/cpp/intfcm/classname //test_ref/cpp/intfm/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/index //test_ref/cpp/clconst/index //test_ref/cpp/instm/index //test_ref/cpp/clm/index //test_ref/cpp/intfcm/index //test_ref/cpp/intfm/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --><span class="preprocessor">)</span>  
	    <span class="comment">// IOKit debug internal routines.</span> 
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/printInstanceCounts //test_ref/cpp/clm/printInstanceCounts //test_ref/cpp/intfcm/printInstanceCounts //test_ref/cpp/intfm/printInstanceCounts //test_ref/cpp/func/printInstanceCounts //test_ref/cpp/ftmplt/printInstanceCounts //test_ref/cpp/defn/printInstanceCounts //test_ref/cpp/macro/printInstanceCounts //test_ref/doc/anysymbol/printInstanceCounts" machineGenerated="true" --><span class="function">printInstanceCounts</span><!-- /a -->(); 
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/serializeClassDictionary //test_ref/cpp/clm/serializeClassDictionary //test_ref/cpp/intfcm/serializeClassDictionary //test_ref/cpp/intfm/serializeClassDictionary //test_ref/cpp/func/serializeClassDictionary //test_ref/cpp/ftmplt/serializeClassDictionary //test_ref/cpp/defn/serializeClassDictionary //test_ref/cpp/macro/serializeClassDictionary //test_ref/doc/anysymbol/serializeClassDictionary" machineGenerated="true" --><span class="function">serializeClassDictionary</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/OSDictionary //test_ref/cpp/tdef/OSDictionary //test_ref/cpp/tag/OSDictionary //test_ref/cpp/struct/OSDictionary //test_ref/cpp/intf/OSDictionary //test_ref/doc/anysymbol/OSDictionary" machineGenerated="true" --><span class="type">OSDictionary</span><!-- /a --> <span class="type">*</span><span class="param">dict</span>);  
	    <span class="keyword">private</span>: <span class="comment">// Obsolete APIs</span> 
	    <span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDictionary //test_ref/cpp/tdef/OSDictionary //test_ref/cpp/tag/OSDictionary //test_ref/cpp/struct/OSDictionary //test_ref/cpp/intf/OSDictionary //test_ref/doc/anysymbol/OSDictionary" machineGenerated="true" --><span class="type">OSDictionary</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/getClassDictionary //test_ref/cpp/clm/getClassDictionary //test_ref/cpp/intfcm/getClassDictionary //test_ref/cpp/intfm/getClassDictionary //test_ref/cpp/func/getClassDictionary //test_ref/cpp/ftmplt/getClassDictionary //test_ref/cpp/defn/getClassDictionary //test_ref/cpp/macro/getClassDictionary //test_ref/doc/anysymbol/getClassDictionary" machineGenerated="true" --><span class="function">getClassDictionary</span><!-- /a -->(); 
	    <span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/bool //test_ref/cpp/tdef/bool //test_ref/cpp/tag/bool //test_ref/cpp/struct/bool //test_ref/cpp/intf/bool //test_ref/doc/anysymbol/bool" machineGenerated="true" --><span class="type">bool</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/serialize //test_ref/cpp/clm/serialize //test_ref/cpp/intfcm/serialize //test_ref/cpp/intfm/serialize //test_ref/cpp/func/serialize //test_ref/cpp/ftmplt/serialize //test_ref/cpp/defn/serialize //test_ref/cpp/macro/serialize //test_ref/doc/anysymbol/serialize" machineGenerated="true" --><span class="function">serialize</span><!-- /a -->(
	        <!-- a logicalPath="//test_ref/cpp/cl/OSSerialize //test_ref/cpp/tdef/OSSerialize //test_ref/cpp/tag/OSSerialize //test_ref/cpp/struct/OSSerialize //test_ref/cpp/intf/OSSerialize //test_ref/doc/anysymbol/OSSerialize" machineGenerated="true" --><span class="type">OSSerialize</span><!-- /a --> <span class="type">*</span><span class="param">s</span>) <span class="keyword">const</span>;  
	    <span class="comment">// Virtual Padding functions for MetaClass's</span>  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass //test_ref/cpp/clm/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass //test_ref/cpp/intfm/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="function">OSMetaClass</span><!-- /a --> <span class="number">0</span> ();  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">1</span> ();  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">2</span> ();  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">3</span> ();  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">4</span> ();  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">5</span> ();  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">6</span> ();  
	    <span class="keyword">private</span>:  <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">7</span> (); 
	};  
END OF OBJECT


OBJECT: operator new (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="keyword">operator</span> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/new //test_ref/cpp/clm/OSMetaClass/new //test_ref/cpp/intfcm/OSMetaClass/new //test_ref/cpp/intfm/OSMetaClass/new //test_ref/cpp/func/new //test_ref/cpp/ftmplt/OSMetaClass/new //test_ref/cpp/defn/new //test_ref/cpp/macro/new //test_ref/doc/anysymbol/new" machineGenerated="true" --><span class="function">new</span><!-- /a -->(
	    <!-- a logicalPath="//test_ref/cpp/cl/size_t //test_ref/cpp/tdef/size_t //test_ref/cpp/tag/size_t //test_ref/cpp/struct/size_t //test_ref/cpp/intf/size_t //test_ref/doc/anysymbol/size_t" machineGenerated="true" --><span class="type">size_t</span><!-- /a --> <span class="param">size</span>); 
END OF OBJECT


OBJECT: OSMetaClass (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="function">OSMetaClass</span><!-- /a -->(); 
END OF OBJECT


OBJECT: logError (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/logError //test_ref/cpp/clm/OSMetaClass/logError //test_ref/cpp/intfcm/OSMetaClass/logError //test_ref/cpp/intfm/OSMetaClass/logError //test_ref/cpp/func/logError //test_ref/cpp/ftmplt/OSMetaClass/logError //test_ref/cpp/defn/logError //test_ref/cpp/macro/logError //test_ref/doc/anysymbol/logError" machineGenerated="true" --><span class="function">logError</span><!-- /a -->(
	    <!-- a logicalPath="//test_ref/cpp/cl/OSReturn //test_ref/cpp/tdef/OSReturn //test_ref/cpp/tag/OSReturn //test_ref/cpp/struct/OSReturn //test_ref/cpp/intf/OSReturn //test_ref/doc/anysymbol/OSReturn" machineGenerated="true" --><span class="type">OSReturn</span><!-- /a --> <span class="param">result</span>); 
END OF OBJECT


OBJECT: getMetaClassWithName (HeaderDoc::Function)
	<span class="keyword">static</span> <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getMetaClassWithName //test_ref/cpp/clm/OSMetaClass/getMetaClassWithName //test_ref/cpp/intfcm/OSMetaClass/getMetaClassWithName //test_ref/cpp/intfm/OSMetaClass/getMetaClassWithName //test_ref/cpp/func/getMetaClassWithName //test_ref/cpp/ftmplt/OSMetaClass/getMetaClassWithName //test_ref/cpp/defn/getMetaClassWithName //test_ref/cpp/macro/getMetaClassWithName //test_ref/doc/anysymbol/getMetaClassWithName" machineGenerated="true" --><span class="function">getMetaClassWithName</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><span class="param">name</span>); 
END OF OBJECT


OBJECT: retain (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/retain //test_ref/cpp/clm/OSMetaClass/retain //test_ref/cpp/intfcm/OSMetaClass/retain //test_ref/cpp/intfm/OSMetaClass/retain //test_ref/cpp/func/retain //test_ref/cpp/ftmplt/OSMetaClass/retain //test_ref/cpp/defn/retain //test_ref/cpp/macro/retain //test_ref/doc/anysymbol/retain" machineGenerated="true" --><span class="function">retain</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: release (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/release //test_ref/cpp/clm/OSMetaClass/release //test_ref/cpp/intfcm/OSMetaClass/release //test_ref/cpp/intfm/OSMetaClass/release //test_ref/cpp/func/release //test_ref/cpp/ftmplt/OSMetaClass/release //test_ref/cpp/defn/release //test_ref/cpp/macro/release //test_ref/doc/anysymbol/release" machineGenerated="true" --><span class="function">release</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: release (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/release //test_ref/cpp/clm/OSMetaClass/release //test_ref/cpp/intfcm/OSMetaClass/release //test_ref/cpp/intfm/OSMetaClass/release //test_ref/cpp/func/release //test_ref/cpp/ftmplt/OSMetaClass/release //test_ref/cpp/defn/release //test_ref/cpp/macro/release //test_ref/doc/anysymbol/release" machineGenerated="true" --><span class="function">release</span><!-- /a -->(
	    <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">when</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: taggedRetain (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/taggedRetain //test_ref/cpp/clm/OSMetaClass/taggedRetain //test_ref/cpp/intfcm/OSMetaClass/taggedRetain //test_ref/cpp/intfm/OSMetaClass/taggedRetain //test_ref/cpp/func/taggedRetain //test_ref/cpp/ftmplt/OSMetaClass/taggedRetain //test_ref/cpp/defn/taggedRetain //test_ref/cpp/macro/taggedRetain //test_ref/doc/anysymbol/taggedRetain" machineGenerated="true" --><span class="function">taggedRetain</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/cl/tag //test_ref/cpp/tdef/tag //test_ref/cpp/tag/tag //test_ref/cpp/struct/tag //test_ref/cpp/intf/tag //test_ref/doc/anysymbol/tag" machineGenerated="true" --><span class="type">tag</span><!-- /a --> = <span class="number">0</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/taggedRelease //test_ref/cpp/clm/OSMetaClass/taggedRelease //test_ref/cpp/intfcm/OSMetaClass/taggedRelease //test_ref/cpp/intfm/OSMetaClass/taggedRelease //test_ref/cpp/func/taggedRelease //test_ref/cpp/ftmplt/OSMetaClass/taggedRelease //test_ref/cpp/defn/taggedRelease //test_ref/cpp/macro/taggedRelease //test_ref/doc/anysymbol/taggedRelease" machineGenerated="true" --><span class="function">taggedRelease</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/cl/tag //test_ref/cpp/tdef/tag //test_ref/cpp/tag/tag //test_ref/cpp/struct/tag //test_ref/cpp/intf/tag //test_ref/doc/anysymbol/tag" machineGenerated="true" --><span class="type">tag</span><!-- /a --> = <span class="number">0</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/taggedRelease //test_ref/cpp/clm/OSMetaClass/taggedRelease //test_ref/cpp/intfcm/OSMetaClass/taggedRelease //test_ref/cpp/intfm/OSMetaClass/taggedRelease //test_ref/cpp/func/taggedRelease //test_ref/cpp/ftmplt/OSMetaClass/taggedRelease //test_ref/cpp/defn/taggedRelease //test_ref/cpp/macro/taggedRelease //test_ref/doc/anysymbol/taggedRelease" machineGenerated="true" --><span class="function">taggedRelease</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/cl/tag //test_ref/cpp/tdef/tag //test_ref/cpp/tag/tag //test_ref/cpp/struct/tag //test_ref/cpp/intf/tag //test_ref/doc/anysymbol/tag" machineGenerated="true" --><span class="type">tag</span><!-- /a --> = <span class="number">0</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/taggedRelease //test_ref/cpp/clm/OSMetaClass/taggedRelease //test_ref/cpp/intfcm/OSMetaClass/taggedRelease //test_ref/cpp/intfm/OSMetaClass/taggedRelease //test_ref/cpp/func/taggedRelease //test_ref/cpp/ftmplt/OSMetaClass/taggedRelease //test_ref/cpp/defn/taggedRelease //test_ref/cpp/macro/taggedRelease //test_ref/doc/anysymbol/taggedRelease" machineGenerated="true" --><span class="function">taggedRelease</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="param">tag</span>,
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">when</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: taggedRelease (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/taggedRelease //test_ref/cpp/clm/OSMetaClass/taggedRelease //test_ref/cpp/intfcm/OSMetaClass/taggedRelease //test_ref/cpp/intfm/OSMetaClass/taggedRelease //test_ref/cpp/func/taggedRelease //test_ref/cpp/ftmplt/OSMetaClass/taggedRelease //test_ref/cpp/defn/taggedRelease //test_ref/cpp/macro/taggedRelease //test_ref/doc/anysymbol/taggedRelease" machineGenerated="true" --><span class="function">taggedRelease</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="param">tag</span>,
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">when</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: getRetainCount (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getRetainCount //test_ref/cpp/clm/OSMetaClass/getRetainCount //test_ref/cpp/intfcm/OSMetaClass/getRetainCount //test_ref/cpp/intfm/OSMetaClass/getRetainCount //test_ref/cpp/func/getRetainCount //test_ref/cpp/ftmplt/OSMetaClass/getRetainCount //test_ref/cpp/defn/getRetainCount //test_ref/cpp/macro/getRetainCount //test_ref/doc/anysymbol/getRetainCount" machineGenerated="true" --><span class="function">getRetainCount</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: getMetaClass (HeaderDoc::Function)
	<span class="keyword">virtual</span> <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="function">getMetaClass</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: OSMetaClass (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="function">OSMetaClass</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">inClassName</span>, 
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><span class="param">inSuperClass</span>, 
	    <span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">inClassSize</span>); 
END OF OBJECT


OBJECT: ~OSMetaClass (HeaderDoc::Function)
	<span class="keyword">virtual</span> ~<!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="function">OSMetaClass</span><!-- /a -->(); 
END OF OBJECT


OBJECT: operator delete (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="keyword">operator</span> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/delete //test_ref/cpp/clm/OSMetaClass/delete //test_ref/cpp/intfcm/OSMetaClass/delete //test_ref/cpp/intfm/OSMetaClass/delete //test_ref/cpp/func/delete //test_ref/cpp/ftmplt/OSMetaClass/delete //test_ref/cpp/defn/delete //test_ref/cpp/macro/delete //test_ref/doc/anysymbol/delete" machineGenerated="true" --><span class="function">delete</span><!-- /a -->(
	    <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span>,
	    <span class="param">size_t</span>);
END OF OBJECT


OBJECT: preModLoad (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/preModLoad //test_ref/cpp/clm/OSMetaClass/preModLoad //test_ref/cpp/intfcm/OSMetaClass/preModLoad //test_ref/cpp/intfm/OSMetaClass/preModLoad //test_ref/cpp/func/preModLoad //test_ref/cpp/ftmplt/OSMetaClass/preModLoad //test_ref/cpp/defn/preModLoad //test_ref/cpp/macro/preModLoad //test_ref/doc/anysymbol/preModLoad" machineGenerated="true" --><span class="function">preModLoad</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">kmodName</span>); 
END OF OBJECT


OBJECT: checkModLoad (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/bool //test_ref/cpp/tdef/bool //test_ref/cpp/tag/bool //test_ref/cpp/struct/bool //test_ref/cpp/intf/bool //test_ref/doc/anysymbol/bool" machineGenerated="true" --><span class="type">bool</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/checkModLoad //test_ref/cpp/clm/OSMetaClass/checkModLoad //test_ref/cpp/intfcm/OSMetaClass/checkModLoad //test_ref/cpp/intfm/OSMetaClass/checkModLoad //test_ref/cpp/func/checkModLoad //test_ref/cpp/ftmplt/OSMetaClass/checkModLoad //test_ref/cpp/defn/checkModLoad //test_ref/cpp/macro/checkModLoad //test_ref/doc/anysymbol/checkModLoad" machineGenerated="true" --><span class="function">checkModLoad</span><!-- /a -->(
	    <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="param">loadHandle</span>); 
END OF OBJECT


OBJECT: postModLoad (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSReturn //test_ref/cpp/tdef/OSReturn //test_ref/cpp/tag/OSReturn //test_ref/cpp/struct/OSReturn //test_ref/cpp/intf/OSReturn //test_ref/doc/anysymbol/OSReturn" machineGenerated="true" --><span class="type">OSReturn</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/postModLoad //test_ref/cpp/clm/OSMetaClass/postModLoad //test_ref/cpp/intfcm/OSMetaClass/postModLoad //test_ref/cpp/intfm/OSMetaClass/postModLoad //test_ref/cpp/func/postModLoad //test_ref/cpp/ftmplt/OSMetaClass/postModLoad //test_ref/cpp/defn/postModLoad //test_ref/cpp/macro/postModLoad //test_ref/doc/anysymbol/postModLoad" machineGenerated="true" --><span class="function">postModLoad</span><!-- /a -->(
	    <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <span class="type">*</span><span class="param">loadHandle</span>); 
END OF OBJECT


OBJECT: modHasInstance (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/bool //test_ref/cpp/tdef/bool //test_ref/cpp/tag/bool //test_ref/cpp/struct/bool //test_ref/cpp/intf/bool //test_ref/doc/anysymbol/bool" machineGenerated="true" --><span class="type">bool</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/modHasInstance //test_ref/cpp/clm/OSMetaClass/modHasInstance //test_ref/cpp/intfcm/OSMetaClass/modHasInstance //test_ref/cpp/intfm/OSMetaClass/modHasInstance //test_ref/cpp/func/modHasInstance //test_ref/cpp/ftmplt/OSMetaClass/modHasInstance //test_ref/cpp/defn/modHasInstance //test_ref/cpp/macro/modHasInstance //test_ref/doc/anysymbol/modHasInstance" machineGenerated="true" --><span class="function">modHasInstance</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">kmodName</span>); 
END OF OBJECT


OBJECT: reportModInstances (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/reportModInstances //test_ref/cpp/clm/OSMetaClass/reportModInstances //test_ref/cpp/intfcm/OSMetaClass/reportModInstances //test_ref/cpp/intfm/OSMetaClass/reportModInstances //test_ref/cpp/func/reportModInstances //test_ref/cpp/ftmplt/OSMetaClass/reportModInstances //test_ref/cpp/defn/reportModInstances //test_ref/cpp/macro/reportModInstances //test_ref/doc/anysymbol/reportModInstances" machineGenerated="true" --><span class="function">reportModInstances</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">kmodName</span>); 
END OF OBJECT


OBJECT: considerUnloads (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/considerUnloads //test_ref/cpp/clm/OSMetaClass/considerUnloads //test_ref/cpp/intfcm/OSMetaClass/considerUnloads //test_ref/cpp/intfm/OSMetaClass/considerUnloads //test_ref/cpp/func/considerUnloads //test_ref/cpp/ftmplt/OSMetaClass/considerUnloads //test_ref/cpp/defn/considerUnloads //test_ref/cpp/macro/considerUnloads //test_ref/doc/anysymbol/considerUnloads" machineGenerated="true" --><span class="function">considerUnloads</span><!-- /a -->(); 
END OF OBJECT


OBJECT: allocClassWithName (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/allocClassWithName //test_ref/cpp/clm/OSMetaClass/allocClassWithName //test_ref/cpp/intfcm/OSMetaClass/allocClassWithName //test_ref/cpp/intfm/OSMetaClass/allocClassWithName //test_ref/cpp/func/allocClassWithName //test_ref/cpp/ftmplt/OSMetaClass/allocClassWithName //test_ref/cpp/defn/allocClassWithName //test_ref/cpp/macro/allocClassWithName //test_ref/doc/anysymbol/allocClassWithName" machineGenerated="true" --><span class="function">allocClassWithName</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><span class="param">name</span>); 
END OF OBJECT


OBJECT: allocClassWithName (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/allocClassWithName //test_ref/cpp/clm/OSMetaClass/allocClassWithName //test_ref/cpp/intfcm/OSMetaClass/allocClassWithName //test_ref/cpp/intfm/OSMetaClass/allocClassWithName //test_ref/cpp/func/allocClassWithName //test_ref/cpp/ftmplt/OSMetaClass/allocClassWithName //test_ref/cpp/defn/allocClassWithName //test_ref/cpp/macro/allocClassWithName //test_ref/doc/anysymbol/allocClassWithName" machineGenerated="true" --><span class="function">allocClassWithName</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSString //test_ref/cpp/tdef/OSString //test_ref/cpp/tag/OSString //test_ref/cpp/struct/OSString //test_ref/cpp/intf/OSString //test_ref/doc/anysymbol/OSString" machineGenerated="true" --><span class="type">OSString</span><!-- /a --> <span class="type">*</span><span class="param">name</span>); 
END OF OBJECT


OBJECT: allocClassWithName (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/allocClassWithName //test_ref/cpp/clm/OSMetaClass/allocClassWithName //test_ref/cpp/intfcm/OSMetaClass/allocClassWithName //test_ref/cpp/intfm/OSMetaClass/allocClassWithName //test_ref/cpp/func/allocClassWithName //test_ref/cpp/ftmplt/OSMetaClass/allocClassWithName //test_ref/cpp/defn/allocClassWithName //test_ref/cpp/macro/allocClassWithName //test_ref/doc/anysymbol/allocClassWithName" machineGenerated="true" --><span class="function">allocClassWithName</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">name</span>); 
END OF OBJECT


OBJECT: checkMetaCastWithName (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/clm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/intfcm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/intfm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/func/checkMetaCastWithName //test_ref/cpp/ftmplt/OSMetaClass/checkMetaCastWithName //test_ref/cpp/defn/checkMetaCastWithName //test_ref/cpp/macro/checkMetaCastWithName //test_ref/doc/anysymbol/checkMetaCastWithName" machineGenerated="true" --><span class="function">checkMetaCastWithName</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><span class="param">name</span>,
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">in</span>); 
END OF OBJECT


OBJECT: checkMetaCastWithName (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/clm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/intfcm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/intfm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/func/checkMetaCastWithName //test_ref/cpp/ftmplt/OSMetaClass/checkMetaCastWithName //test_ref/cpp/defn/checkMetaCastWithName //test_ref/cpp/macro/checkMetaCastWithName //test_ref/doc/anysymbol/checkMetaCastWithName" machineGenerated="true" --><span class="function">checkMetaCastWithName</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSString //test_ref/cpp/tdef/OSString //test_ref/cpp/tag/OSString //test_ref/cpp/struct/OSString //test_ref/cpp/intf/OSString //test_ref/doc/anysymbol/OSString" machineGenerated="true" --><span class="type">OSString</span><!-- /a --> <span class="type">*</span><span class="param">name</span>,
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">in</span>); 
END OF OBJECT


OBJECT: checkMetaCastWithName (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/clm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/intfcm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/intfm/OSMetaClass/checkMetaCastWithName //test_ref/cpp/func/checkMetaCastWithName //test_ref/cpp/ftmplt/OSMetaClass/checkMetaCastWithName //test_ref/cpp/defn/checkMetaCastWithName //test_ref/cpp/macro/checkMetaCastWithName //test_ref/doc/anysymbol/checkMetaCastWithName" machineGenerated="true" --><span class="function">checkMetaCastWithName</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><span class="param">name</span>,
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">in</span>); 
END OF OBJECT


OBJECT: instanceConstructed (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/instanceConstructed //test_ref/cpp/clm/OSMetaClass/instanceConstructed //test_ref/cpp/intfcm/OSMetaClass/instanceConstructed //test_ref/cpp/intfm/OSMetaClass/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/OSMetaClass/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="function">instanceConstructed</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: instanceDestructed (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/instanceDestructed //test_ref/cpp/clm/OSMetaClass/instanceDestructed //test_ref/cpp/intfcm/OSMetaClass/instanceDestructed //test_ref/cpp/intfm/OSMetaClass/instanceDestructed //test_ref/cpp/func/instanceDestructed //test_ref/cpp/ftmplt/OSMetaClass/instanceDestructed //test_ref/cpp/defn/instanceDestructed //test_ref/cpp/macro/instanceDestructed //test_ref/doc/anysymbol/instanceDestructed" machineGenerated="true" --><span class="function">instanceDestructed</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: checkMetaCast (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/checkMetaCast //test_ref/cpp/clm/OSMetaClass/checkMetaCast //test_ref/cpp/intfcm/OSMetaClass/checkMetaCast //test_ref/cpp/intfm/OSMetaClass/checkMetaCast //test_ref/cpp/func/checkMetaCast //test_ref/cpp/ftmplt/OSMetaClass/checkMetaCast //test_ref/cpp/defn/checkMetaCast //test_ref/cpp/macro/checkMetaCast //test_ref/doc/anysymbol/checkMetaCast" machineGenerated="true" --><span class="function">checkMetaCast</span><!-- /a -->(
	    <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassBase //test_ref/cpp/tdef/OSMetaClassBase //test_ref/cpp/tag/OSMetaClassBase //test_ref/cpp/struct/OSMetaClassBase //test_ref/cpp/intf/OSMetaClassBase //test_ref/doc/anysymbol/OSMetaClassBase" machineGenerated="true" --><span class="type">OSMetaClassBase</span><!-- /a --> <span class="type">*</span><span class="param">check</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: getInstanceCount (HeaderDoc::Function)
	<span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getInstanceCount //test_ref/cpp/clm/OSMetaClass/getInstanceCount //test_ref/cpp/intfcm/OSMetaClass/getInstanceCount //test_ref/cpp/intfm/OSMetaClass/getInstanceCount //test_ref/cpp/func/getInstanceCount //test_ref/cpp/ftmplt/OSMetaClass/getInstanceCount //test_ref/cpp/defn/getInstanceCount //test_ref/cpp/macro/getInstanceCount //test_ref/doc/anysymbol/getInstanceCount" machineGenerated="true" --><span class="function">getInstanceCount</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: getSuperClass (HeaderDoc::Function)
	<span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getSuperClass //test_ref/cpp/clm/OSMetaClass/getSuperClass //test_ref/cpp/intfcm/OSMetaClass/getSuperClass //test_ref/cpp/intfm/OSMetaClass/getSuperClass //test_ref/cpp/func/getSuperClass //test_ref/cpp/ftmplt/OSMetaClass/getSuperClass //test_ref/cpp/defn/getSuperClass //test_ref/cpp/macro/getSuperClass //test_ref/doc/anysymbol/getSuperClass" machineGenerated="true" --><span class="function">getSuperClass</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: getKmodName (HeaderDoc::Function)
	<span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getKmodName //test_ref/cpp/clm/OSMetaClass/getKmodName //test_ref/cpp/intfcm/OSMetaClass/getKmodName //test_ref/cpp/intfm/OSMetaClass/getKmodName //test_ref/cpp/func/getKmodName //test_ref/cpp/ftmplt/OSMetaClass/getKmodName //test_ref/cpp/defn/getKmodName //test_ref/cpp/macro/getKmodName //test_ref/doc/anysymbol/getKmodName" machineGenerated="true" --><span class="function">getKmodName</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: getClassName (HeaderDoc::Function)
	<span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/char //test_ref/cpp/tdef/char //test_ref/cpp/tag/char //test_ref/cpp/struct/char //test_ref/cpp/intf/char //test_ref/doc/anysymbol/char" machineGenerated="true" --><span class="type">char</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getClassName //test_ref/cpp/clm/OSMetaClass/getClassName //test_ref/cpp/intfcm/OSMetaClass/getClassName //test_ref/cpp/intfm/OSMetaClass/getClassName //test_ref/cpp/func/getClassName //test_ref/cpp/ftmplt/OSMetaClass/getClassName //test_ref/cpp/defn/getClassName //test_ref/cpp/macro/getClassName //test_ref/doc/anysymbol/getClassName" machineGenerated="true" --><span class="function">getClassName</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: getClassSize (HeaderDoc::Function)
	<span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getClassSize //test_ref/cpp/clm/OSMetaClass/getClassSize //test_ref/cpp/intfcm/OSMetaClass/getClassSize //test_ref/cpp/intfm/OSMetaClass/getClassSize //test_ref/cpp/func/getClassSize //test_ref/cpp/ftmplt/OSMetaClass/getClassSize //test_ref/cpp/defn/getClassSize //test_ref/cpp/macro/getClassSize //test_ref/doc/anysymbol/getClassSize" machineGenerated="true" --><span class="function">getClassSize</span><!-- /a -->() <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: alloc (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="type">OSObject</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="function">alloc</span><!-- /a -->() <span class="keyword">const</span> = <span class="number">0</span>; 
END OF OBJECT


OBJECT: reservedCalled (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/reservedCalled //test_ref/cpp/clm/OSMetaClass/reservedCalled //test_ref/cpp/intfcm/OSMetaClass/reservedCalled //test_ref/cpp/intfm/OSMetaClass/reservedCalled //test_ref/cpp/func/reservedCalled //test_ref/cpp/ftmplt/OSMetaClass/reservedCalled //test_ref/cpp/defn/reservedCalled //test_ref/cpp/macro/reservedCalled //test_ref/doc/anysymbol/reservedCalled" machineGenerated="true" --><span class="function">reservedCalled</span><!-- /a -->(
	    <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <span class="param">ind</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: printInstanceCounts (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/printInstanceCounts //test_ref/cpp/clm/OSMetaClass/printInstanceCounts //test_ref/cpp/intfcm/OSMetaClass/printInstanceCounts //test_ref/cpp/intfm/OSMetaClass/printInstanceCounts //test_ref/cpp/func/printInstanceCounts //test_ref/cpp/ftmplt/OSMetaClass/printInstanceCounts //test_ref/cpp/defn/printInstanceCounts //test_ref/cpp/macro/printInstanceCounts //test_ref/doc/anysymbol/printInstanceCounts" machineGenerated="true" --><span class="function">printInstanceCounts</span><!-- /a -->(); 
END OF OBJECT


OBJECT: serializeClassDictionary (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/serializeClassDictionary //test_ref/cpp/clm/OSMetaClass/serializeClassDictionary //test_ref/cpp/intfcm/OSMetaClass/serializeClassDictionary //test_ref/cpp/intfm/OSMetaClass/serializeClassDictionary //test_ref/cpp/func/serializeClassDictionary //test_ref/cpp/ftmplt/OSMetaClass/serializeClassDictionary //test_ref/cpp/defn/serializeClassDictionary //test_ref/cpp/macro/serializeClassDictionary //test_ref/doc/anysymbol/serializeClassDictionary" machineGenerated="true" --><span class="function">serializeClassDictionary</span><!-- /a -->(
	    <!-- a logicalPath="//test_ref/cpp/cl/OSDictionary //test_ref/cpp/tdef/OSDictionary //test_ref/cpp/tag/OSDictionary //test_ref/cpp/struct/OSDictionary //test_ref/cpp/intf/OSDictionary //test_ref/doc/anysymbol/OSDictionary" machineGenerated="true" --><span class="type">OSDictionary</span><!-- /a --> <span class="type">*</span><span class="param">dict</span>); 
END OF OBJECT


OBJECT: getClassDictionary (HeaderDoc::Function)
	<span class="keyword">static</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDictionary //test_ref/cpp/tdef/OSDictionary //test_ref/cpp/tag/OSDictionary //test_ref/cpp/struct/OSDictionary //test_ref/cpp/intf/OSDictionary //test_ref/doc/anysymbol/OSDictionary" machineGenerated="true" --><span class="type">OSDictionary</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/getClassDictionary //test_ref/cpp/clm/OSMetaClass/getClassDictionary //test_ref/cpp/intfcm/OSMetaClass/getClassDictionary //test_ref/cpp/intfm/OSMetaClass/getClassDictionary //test_ref/cpp/func/getClassDictionary //test_ref/cpp/ftmplt/OSMetaClass/getClassDictionary //test_ref/cpp/defn/getClassDictionary //test_ref/cpp/macro/getClassDictionary //test_ref/doc/anysymbol/getClassDictionary" machineGenerated="true" --><span class="function">getClassDictionary</span><!-- /a -->(); 
END OF OBJECT


OBJECT: serialize (HeaderDoc::Function)
	<span class="keyword">virtual</span> <!-- a logicalPath="//test_ref/cpp/cl/bool //test_ref/cpp/tdef/bool //test_ref/cpp/tag/bool //test_ref/cpp/struct/bool //test_ref/cpp/intf/bool //test_ref/doc/anysymbol/bool" machineGenerated="true" --><span class="type">bool</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/serialize //test_ref/cpp/clm/OSMetaClass/serialize //test_ref/cpp/intfcm/OSMetaClass/serialize //test_ref/cpp/intfm/OSMetaClass/serialize //test_ref/cpp/func/serialize //test_ref/cpp/ftmplt/OSMetaClass/serialize //test_ref/cpp/defn/serialize //test_ref/cpp/macro/serialize //test_ref/doc/anysymbol/serialize" machineGenerated="true" --><span class="function">serialize</span><!-- /a -->(
	    <!-- a logicalPath="//test_ref/cpp/cl/OSSerialize //test_ref/cpp/tdef/OSSerialize //test_ref/cpp/tag/OSSerialize //test_ref/cpp/struct/OSSerialize //test_ref/cpp/intf/OSSerialize //test_ref/doc/anysymbol/OSSerialize" machineGenerated="true" --><span class="type">OSSerialize</span><!-- /a --> <span class="type">*</span><span class="param">s</span>) <span class="keyword">const</span>; 
END OF OBJECT


OBJECT: 0 (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="function">OSMetaClass</span><!-- /a --> <span class="number">0</span> (); 
END OF OBJECT


OBJECT: 1 (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">1</span> (); 
END OF OBJECT


OBJECT: 2 (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">2</span> (); 
END OF OBJECT


OBJECT: 3 (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">3</span> (); 
END OF OBJECT


OBJECT: 4 (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">4</span> (); 
END OF OBJECT


OBJECT: 5 (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">5</span> (); 
END OF OBJECT


OBJECT: 6 (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">6</span> (); 
END OF OBJECT


OBJECT: 7 (HeaderDoc::Function)
	<!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="type">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="type">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="type">_RESERVED</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="number">7</span> (); 
END OF OBJECT


OBJECT: superClassLink (HeaderDoc::Constant)
	<span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/econst/superClassLink //test_ref/cpp/data/OSMetaClass/superClassLink //test_ref/cpp/data/superClassLink //test_ref/cpp/clconst/OSMetaClass/superClassLink " machineGenerated="true" --><span class="var">superClassLink</span><!-- /a -->; 
END OF OBJECT


OBJECT: superClassLink (HeaderDoc::Constant)
	<span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/econst/superClassLink //test_ref/cpp/data/OSMetaClass/superClassLink //test_ref/cpp/data/superClassLink //test_ref/cpp/clconst/OSMetaClass/superClassLink " machineGenerated="true" --><span class="var">superClassLink</span><!-- /a -->; 
END OF OBJECT


OBJECT: className (HeaderDoc::Constant)
	<span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSSymbol //test_ref/cpp/tdef/OSSymbol //test_ref/cpp/tag/OSSymbol //test_ref/cpp/struct/OSSymbol //test_ref/cpp/intf/OSSymbol //test_ref/doc/anysymbol/OSSymbol" machineGenerated="true" --><span class="type">OSSymbol</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className " machineGenerated="true" --><span class="var">className</span><!-- /a -->; 
END OF OBJECT


OBJECT: metaClass (HeaderDoc::Constant)
	<span class="keyword">static</span> <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="type">OSMetaClass</span><!-- /a --> <span class="type">*</span> <span class="keyword">const</span> <!-- a logicalPath="//test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass " machineGenerated="true" --><span class="var">metaClass</span><!-- /a -->; 
END OF OBJECT


OBJECT: ExpansionData (HeaderDoc::Struct)
	<span class="keyword">struct</span> <!-- a logicalPath="//test_ref/cpp/cl/ExpansionData //test_ref/cpp/tdef/ExpansionData //test_ref/cpp/tag/ExpansionData //test_ref/cpp/struct/ExpansionData //test_ref/cpp/intf/ExpansionData //test_ref/doc/anysymbol/ExpansionData" machineGenerated="true" --><span class="type">ExpansionData</span><!-- /a --> {
	}; 
END OF OBJECT


OBJECT: reserved (HeaderDoc::Var)
	<!-- a logicalPath="//test_ref/cpp/cl/ExpansionData //test_ref/cpp/tdef/ExpansionData //test_ref/cpp/tag/ExpansionData //test_ref/cpp/struct/ExpansionData //test_ref/cpp/intf/ExpansionData //test_ref/doc/anysymbol/ExpansionData" machineGenerated="true" --><span class="type">ExpansionData</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//test_ref/cpp/econst/reserved //test_ref/cpp/data/OSMetaClass/reserved //test_ref/cpp/data/reserved //test_ref/cpp/clconst/OSMetaClass/reserved " machineGenerated="true" --><span class="var">reserved</span><!-- /a -->; 
END OF OBJECT


OBJECT: classSize (HeaderDoc::Var)
	<span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/econst/classSize //test_ref/cpp/data/OSMetaClass/classSize //test_ref/cpp/data/classSize //test_ref/cpp/clconst/OSMetaClass/classSize " machineGenerated="true" --><span class="var">classSize</span><!-- /a -->; 
END OF OBJECT


OBJECT: instanceCount (HeaderDoc::Var)
	<span class="keyword">mutable</span> <span class="keyword">unsigned</span> <!-- a logicalPath="//test_ref/cpp/cl/int //test_ref/cpp/tdef/int //test_ref/cpp/tag/int //test_ref/cpp/struct/int //test_ref/cpp/intf/int //test_ref/doc/anysymbol/int" machineGenerated="true" --><span class="type">int</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/econst/instanceCount //test_ref/cpp/data/OSMetaClass/instanceCount //test_ref/cpp/data/instanceCount //test_ref/cpp/clconst/OSMetaClass/instanceCount " machineGenerated="true" --><span class="var">instanceCount</span><!-- /a -->; 
END OF OBJECT


OBJECT: OSDeclareCommonStructors (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDeclareCommonStructors //test_ref/cpp/tdef/OSDeclareCommonStructors //test_ref/cpp/tag/OSDeclareCommonStructors //test_ref/cpp/struct/OSDeclareCommonStructors //test_ref/cpp/intf/OSDeclareCommonStructors //test_ref/cpp/econst/OSDeclareCommonStructors //test_ref/cpp/data/OSMetaClass/OSDeclareCommonStructors //test_ref/cpp/data/OSDeclareCommonStructors //test_ref/cpp/clconst/OSMetaClass/OSDeclareCommonStructors //test_ref/cpp/instm/OSMetaClass/OSDeclareCommonStructors //test_ref/cpp/clm/OSMetaClass/OSDeclareCommonStructors //test_ref/cpp/intfcm/OSMetaClass/OSDeclareCommonStructors //test_ref/cpp/intfm/OSMetaClass/OSDeclareCommonStructors //test_ref/cpp/func/OSDeclareCommonStructors //test_ref/cpp/ftmplt/OSMetaClass/OSDeclareCommonStructors //test_ref/cpp/defn/OSDeclareCommonStructors //test_ref/cpp/macro/OSDeclareCommonStructors //test_ref/doc/com/intfm/OSMetaClass/OSDeclareCommonStructors //test_ref/doc/anysymbol/OSDeclareCommonStructors" machineGenerated="true" --><span class="preprocessor">OSDeclareCommonStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/OSMetaClass/class //test_ref/cpp/data/class //test_ref/cpp/clconst/OSMetaClass/class //test_ref/cpp/instm/OSMetaClass/class //test_ref/cpp/clm/OSMetaClass/class //test_ref/cpp/intfcm/OSMetaClass/class //test_ref/cpp/intfm/OSMetaClass/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/OSMetaClass/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/OSMetaClass/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <span class="preprocessor">:</span> <span class="preprocessor">public</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">{</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">}</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/friend //test_ref/cpp/tdef/friend //test_ref/cpp/tag/friend //test_ref/cpp/struct/friend //test_ref/cpp/intf/friend //test_ref/cpp/econst/friend //test_ref/cpp/data/OSMetaClass/friend //test_ref/cpp/data/friend //test_ref/cpp/clconst/OSMetaClass/friend //test_ref/cpp/instm/OSMetaClass/friend //test_ref/cpp/clm/OSMetaClass/friend //test_ref/cpp/intfcm/OSMetaClass/friend //test_ref/cpp/intfm/OSMetaClass/friend //test_ref/cpp/func/friend //test_ref/cpp/ftmplt/OSMetaClass/friend //test_ref/cpp/defn/friend //test_ref/cpp/macro/friend //test_ref/doc/com/intfm/OSMetaClass/friend //test_ref/doc/anysymbol/friend" machineGenerated="true" --><span class="preprocessor">friend</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/OSMetaClass/class //test_ref/cpp/data/class //test_ref/cpp/clconst/OSMetaClass/class //test_ref/cpp/instm/OSMetaClass/class //test_ref/cpp/clm/OSMetaClass/class //test_ref/cpp/intfcm/OSMetaClass/class //test_ref/cpp/intfm/OSMetaClass/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/OSMetaClass/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/OSMetaClass/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">protected</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> 
END OF OBJECT


OBJECT: OSDeclareDefaultStructors (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDeclareDefaultStructors //test_ref/cpp/tdef/OSDeclareDefaultStructors //test_ref/cpp/tag/OSDeclareDefaultStructors //test_ref/cpp/struct/OSDeclareDefaultStructors //test_ref/cpp/intf/OSDeclareDefaultStructors //test_ref/cpp/econst/OSDeclareDefaultStructors //test_ref/cpp/data/OSMetaClass/OSDeclareDefaultStructors //test_ref/cpp/data/OSDeclareDefaultStructors //test_ref/cpp/clconst/OSMetaClass/OSDeclareDefaultStructors //test_ref/cpp/instm/OSMetaClass/OSDeclareDefaultStructors //test_ref/cpp/clm/OSMetaClass/OSDeclareDefaultStructors //test_ref/cpp/intfcm/OSMetaClass/OSDeclareDefaultStructors //test_ref/cpp/intfm/OSMetaClass/OSDeclareDefaultStructors //test_ref/cpp/func/OSDeclareDefaultStructors //test_ref/cpp/ftmplt/OSMetaClass/OSDeclareDefaultStructors //test_ref/cpp/defn/OSDeclareDefaultStructors //test_ref/cpp/macro/OSDeclareDefaultStructors //test_ref/doc/com/intfm/OSMetaClass/OSDeclareDefaultStructors //test_ref/doc/anysymbol/OSDeclareDefaultStructors" machineGenerated="true" --><span class="preprocessor">OSDeclareDefaultStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/OSMetaClass/class //test_ref/cpp/data/class //test_ref/cpp/clconst/OSMetaClass/class //test_ref/cpp/instm/OSMetaClass/class //test_ref/cpp/clm/OSMetaClass/class //test_ref/cpp/intfcm/OSMetaClass/class //test_ref/cpp/intfm/OSMetaClass/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/OSMetaClass/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/OSMetaClass/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <span class="preprocessor">:</span> <span class="preprocessor">public</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">{</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">}</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/friend //test_ref/cpp/tdef/friend //test_ref/cpp/tag/friend //test_ref/cpp/struct/friend //test_ref/cpp/intf/friend //test_ref/cpp/econst/friend //test_ref/cpp/data/OSMetaClass/friend //test_ref/cpp/data/friend //test_ref/cpp/clconst/OSMetaClass/friend //test_ref/cpp/instm/OSMetaClass/friend //test_ref/cpp/clm/OSMetaClass/friend //test_ref/cpp/intfcm/OSMetaClass/friend //test_ref/cpp/intfm/OSMetaClass/friend //test_ref/cpp/func/friend //test_ref/cpp/ftmplt/OSMetaClass/friend //test_ref/cpp/defn/friend //test_ref/cpp/macro/friend //test_ref/doc/com/intfm/OSMetaClass/friend //test_ref/doc/anysymbol/friend" machineGenerated="true" --><span class="preprocessor">friend</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/OSMetaClass/class //test_ref/cpp/data/class //test_ref/cpp/clconst/OSMetaClass/class //test_ref/cpp/instm/OSMetaClass/class //test_ref/cpp/clm/OSMetaClass/class //test_ref/cpp/intfcm/OSMetaClass/class //test_ref/cpp/intfm/OSMetaClass/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/OSMetaClass/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/OSMetaClass/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">protected</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">protected</span><span class="preprocessor">:</span> 
END OF OBJECT


OBJECT: OSDeclareAbstractStructors (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDeclareAbstractStructors //test_ref/cpp/tdef/OSDeclareAbstractStructors //test_ref/cpp/tag/OSDeclareAbstractStructors //test_ref/cpp/struct/OSDeclareAbstractStructors //test_ref/cpp/intf/OSDeclareAbstractStructors //test_ref/cpp/econst/OSDeclareAbstractStructors //test_ref/cpp/data/OSMetaClass/OSDeclareAbstractStructors //test_ref/cpp/data/OSDeclareAbstractStructors //test_ref/cpp/clconst/OSMetaClass/OSDeclareAbstractStructors //test_ref/cpp/instm/OSMetaClass/OSDeclareAbstractStructors //test_ref/cpp/clm/OSMetaClass/OSDeclareAbstractStructors //test_ref/cpp/intfcm/OSMetaClass/OSDeclareAbstractStructors //test_ref/cpp/intfm/OSMetaClass/OSDeclareAbstractStructors //test_ref/cpp/func/OSDeclareAbstractStructors //test_ref/cpp/ftmplt/OSMetaClass/OSDeclareAbstractStructors //test_ref/cpp/defn/OSDeclareAbstractStructors //test_ref/cpp/macro/OSDeclareAbstractStructors //test_ref/doc/com/intfm/OSMetaClass/OSDeclareAbstractStructors //test_ref/doc/anysymbol/OSDeclareAbstractStructors" machineGenerated="true" --><span class="preprocessor">OSDeclareAbstractStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/static //test_ref/cpp/tdef/static //test_ref/cpp/tag/static //test_ref/cpp/struct/static //test_ref/cpp/intf/static //test_ref/cpp/econst/static //test_ref/cpp/data/OSMetaClass/static //test_ref/cpp/data/static //test_ref/cpp/clconst/OSMetaClass/static //test_ref/cpp/instm/OSMetaClass/static //test_ref/cpp/clm/OSMetaClass/static //test_ref/cpp/intfcm/OSMetaClass/static //test_ref/cpp/intfm/OSMetaClass/static //test_ref/cpp/func/static //test_ref/cpp/ftmplt/OSMetaClass/static //test_ref/cpp/defn/static //test_ref/cpp/macro/static //test_ref/doc/com/intfm/OSMetaClass/static //test_ref/doc/anysymbol/static" machineGenerated="true" --><span class="preprocessor">static</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/OSMetaClass/class //test_ref/cpp/data/class //test_ref/cpp/clconst/OSMetaClass/class //test_ref/cpp/instm/OSMetaClass/class //test_ref/cpp/clm/OSMetaClass/class //test_ref/cpp/intfcm/OSMetaClass/class //test_ref/cpp/intfm/OSMetaClass/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/OSMetaClass/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/OSMetaClass/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <span class="preprocessor">:</span> <span class="preprocessor">public</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">{</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">public</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">}</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/friend //test_ref/cpp/tdef/friend //test_ref/cpp/tag/friend //test_ref/cpp/struct/friend //test_ref/cpp/intf/friend //test_ref/cpp/econst/friend //test_ref/cpp/data/OSMetaClass/friend //test_ref/cpp/data/friend //test_ref/cpp/clconst/OSMetaClass/friend //test_ref/cpp/instm/OSMetaClass/friend //test_ref/cpp/clm/OSMetaClass/friend //test_ref/cpp/intfcm/OSMetaClass/friend //test_ref/cpp/intfm/OSMetaClass/friend //test_ref/cpp/func/friend //test_ref/cpp/ftmplt/OSMetaClass/friend //test_ref/cpp/defn/friend //test_ref/cpp/macro/friend //test_ref/doc/com/intfm/OSMetaClass/friend //test_ref/doc/anysymbol/friend" machineGenerated="true" --><span class="preprocessor">friend</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/class //test_ref/cpp/tdef/class //test_ref/cpp/tag/class //test_ref/cpp/struct/class //test_ref/cpp/intf/class //test_ref/cpp/econst/class //test_ref/cpp/data/OSMetaClass/class //test_ref/cpp/data/class //test_ref/cpp/clconst/OSMetaClass/class //test_ref/cpp/instm/OSMetaClass/class //test_ref/cpp/clm/OSMetaClass/class //test_ref/cpp/intfcm/OSMetaClass/class //test_ref/cpp/intfm/OSMetaClass/class //test_ref/cpp/func/class //test_ref/cpp/ftmplt/OSMetaClass/class //test_ref/cpp/defn/class //test_ref/cpp/macro/class //test_ref/doc/com/intfm/OSMetaClass/class //test_ref/doc/anysymbol/class" machineGenerated="true" --><span class="preprocessor">class</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">protected</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/virtual //test_ref/cpp/tdef/virtual //test_ref/cpp/tag/virtual //test_ref/cpp/struct/virtual //test_ref/cpp/intf/virtual //test_ref/cpp/econst/virtual //test_ref/cpp/data/OSMetaClass/virtual //test_ref/cpp/data/virtual //test_ref/cpp/clconst/OSMetaClass/virtual //test_ref/cpp/instm/OSMetaClass/virtual //test_ref/cpp/clm/OSMetaClass/virtual //test_ref/cpp/intfcm/OSMetaClass/virtual //test_ref/cpp/intfm/OSMetaClass/virtual //test_ref/cpp/func/virtual //test_ref/cpp/ftmplt/OSMetaClass/virtual //test_ref/cpp/defn/virtual //test_ref/cpp/macro/virtual //test_ref/doc/com/intfm/OSMetaClass/virtual //test_ref/doc/anysymbol/virtual" machineGenerated="true" --><span class="preprocessor">virtual</span><!-- /a --> <span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="comment"><span class="comment">/*</span> <span class="comment">Make primary constructor private in abstract </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">protected</span><span class="preprocessor">:</span> 
END OF OBJECT


OBJECT: OSDefineMetaClassWithInit (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassWithInit //test_ref/cpp/tdef/OSDefineMetaClassWithInit //test_ref/cpp/tag/OSDefineMetaClassWithInit //test_ref/cpp/struct/OSDefineMetaClassWithInit //test_ref/cpp/intf/OSDefineMetaClassWithInit //test_ref/cpp/econst/OSDefineMetaClassWithInit //test_ref/cpp/data/OSMetaClass/OSDefineMetaClassWithInit //test_ref/cpp/data/OSDefineMetaClassWithInit //test_ref/cpp/clconst/OSMetaClass/OSDefineMetaClassWithInit //test_ref/cpp/instm/OSMetaClass/OSDefineMetaClassWithInit //test_ref/cpp/clm/OSMetaClass/OSDefineMetaClassWithInit //test_ref/cpp/intfcm/OSMetaClass/OSDefineMetaClassWithInit //test_ref/cpp/intfm/OSMetaClass/OSDefineMetaClassWithInit //test_ref/cpp/func/OSDefineMetaClassWithInit //test_ref/cpp/ftmplt/OSMetaClass/OSDefineMetaClassWithInit //test_ref/cpp/defn/OSDefineMetaClassWithInit //test_ref/cpp/macro/OSDefineMetaClassWithInit //test_ref/doc/com/intfm/OSMetaClass/OSDefineMetaClassWithInit //test_ref/doc/anysymbol/OSDefineMetaClassWithInit" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassWithInit</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/OSMetaClass/init //test_ref/cpp/data/init //test_ref/cpp/clconst/OSMetaClass/init //test_ref/cpp/instm/OSMetaClass/init //test_ref/cpp/clm/OSMetaClass/init //test_ref/cpp/intfcm/OSMetaClass/init //test_ref/cpp/intfm/OSMetaClass/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/OSMetaClass/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/OSMetaClass/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">#</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/OSMetaClass/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/OSMetaClass/sizeof //test_ref/cpp/instm/OSMetaClass/sizeof //test_ref/cpp/clm/OSMetaClass/sizeof //test_ref/cpp/intfcm/OSMetaClass/sizeof //test_ref/cpp/intfm/OSMetaClass/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/OSMetaClass/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/OSMetaClass/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/OSMetaClass/init //test_ref/cpp/data/init //test_ref/cpp/clconst/OSMetaClass/init //test_ref/cpp/instm/OSMetaClass/init //test_ref/cpp/clm/OSMetaClass/init //test_ref/cpp/intfcm/OSMetaClass/init //test_ref/cpp/intfm/OSMetaClass/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/OSMetaClass/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/OSMetaClass/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSDefineAbstractStructors (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineAbstractStructors //test_ref/cpp/tdef/OSDefineAbstractStructors //test_ref/cpp/tag/OSDefineAbstractStructors //test_ref/cpp/struct/OSDefineAbstractStructors //test_ref/cpp/intf/OSDefineAbstractStructors //test_ref/cpp/econst/OSDefineAbstractStructors //test_ref/cpp/data/OSMetaClass/OSDefineAbstractStructors //test_ref/cpp/data/OSDefineAbstractStructors //test_ref/cpp/clconst/OSMetaClass/OSDefineAbstractStructors //test_ref/cpp/instm/OSMetaClass/OSDefineAbstractStructors //test_ref/cpp/clm/OSMetaClass/OSDefineAbstractStructors //test_ref/cpp/intfcm/OSMetaClass/OSDefineAbstractStructors //test_ref/cpp/intfm/OSMetaClass/OSDefineAbstractStructors //test_ref/cpp/func/OSDefineAbstractStructors //test_ref/cpp/ftmplt/OSMetaClass/OSDefineAbstractStructors //test_ref/cpp/defn/OSDefineAbstractStructors //test_ref/cpp/macro/OSDefineAbstractStructors //test_ref/doc/com/intfm/OSMetaClass/OSDefineAbstractStructors //test_ref/doc/anysymbol/OSDefineAbstractStructors" machineGenerated="true" --><span class="preprocessor">OSDefineAbstractStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">0</span><span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSDefineDefaultStructors (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineDefaultStructors //test_ref/cpp/tdef/OSDefineDefaultStructors //test_ref/cpp/tag/OSDefineDefaultStructors //test_ref/cpp/struct/OSDefineDefaultStructors //test_ref/cpp/intf/OSDefineDefaultStructors //test_ref/cpp/econst/OSDefineDefaultStructors //test_ref/cpp/data/OSMetaClass/OSDefineDefaultStructors //test_ref/cpp/data/OSDefineDefaultStructors //test_ref/cpp/clconst/OSMetaClass/OSDefineDefaultStructors //test_ref/cpp/instm/OSMetaClass/OSDefineDefaultStructors //test_ref/cpp/clm/OSMetaClass/OSDefineDefaultStructors //test_ref/cpp/intfcm/OSMetaClass/OSDefineDefaultStructors //test_ref/cpp/intfm/OSMetaClass/OSDefineDefaultStructors //test_ref/cpp/func/OSDefineDefaultStructors //test_ref/cpp/ftmplt/OSMetaClass/OSDefineDefaultStructors //test_ref/cpp/defn/OSDefineDefaultStructors //test_ref/cpp/macro/OSDefineDefaultStructors //test_ref/doc/com/intfm/OSMetaClass/OSDefineDefaultStructors //test_ref/doc/anysymbol/OSDefineDefaultStructors" machineGenerated="true" --><span class="preprocessor">OSDefineDefaultStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/new //test_ref/cpp/tdef/new //test_ref/cpp/tag/new //test_ref/cpp/struct/new //test_ref/cpp/intf/new //test_ref/cpp/econst/new //test_ref/cpp/data/OSMetaClass/new //test_ref/cpp/data/new //test_ref/cpp/clconst/OSMetaClass/new //test_ref/cpp/instm/OSMetaClass/new //test_ref/cpp/clm/OSMetaClass/new //test_ref/cpp/intfcm/OSMetaClass/new //test_ref/cpp/intfm/OSMetaClass/new //test_ref/cpp/func/new //test_ref/cpp/ftmplt/OSMetaClass/new //test_ref/cpp/defn/new //test_ref/cpp/macro/new //test_ref/doc/com/intfm/OSMetaClass/new //test_ref/doc/anysymbol/new" machineGenerated="true" --><span class="preprocessor">new</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">.</span><!-- a logicalPath="//test_ref/cpp/cl/instanceConstructed //test_ref/cpp/tdef/instanceConstructed //test_ref/cpp/tag/instanceConstructed //test_ref/cpp/struct/instanceConstructed //test_ref/cpp/intf/instanceConstructed //test_ref/cpp/econst/instanceConstructed //test_ref/cpp/data/OSMetaClass/instanceConstructed //test_ref/cpp/data/instanceConstructed //test_ref/cpp/clconst/OSMetaClass/instanceConstructed //test_ref/cpp/instm/OSMetaClass/instanceConstructed //test_ref/cpp/clm/OSMetaClass/instanceConstructed //test_ref/cpp/intfcm/OSMetaClass/instanceConstructed //test_ref/cpp/intfm/OSMetaClass/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/OSMetaClass/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/com/intfm/OSMetaClass/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="preprocessor">instanceConstructed</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSDefineMetaClassAndAbstractStructorsWithInit (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/tdef/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/tag/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/struct/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/intf/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/econst/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/data/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/data/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/clconst/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/instm/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/clm/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/intfcm/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/intfm/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/func/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/ftmplt/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/defn/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/cpp/macro/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/doc/com/intfm/OSMetaClass/OSDefineMetaClassAndAbstractStructorsWithInit //test_ref/doc/anysymbol/OSDefineMetaClassAndAbstractStructorsWithInit" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndAbstractStructorsWithInit</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/OSMetaClass/init //test_ref/cpp/data/init //test_ref/cpp/clconst/OSMetaClass/init //test_ref/cpp/instm/OSMetaClass/init //test_ref/cpp/clm/OSMetaClass/init //test_ref/cpp/intfcm/OSMetaClass/init //test_ref/cpp/intfm/OSMetaClass/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/OSMetaClass/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/OSMetaClass/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/OSMetaClass/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/OSMetaClass/sizeof //test_ref/cpp/instm/OSMetaClass/sizeof //test_ref/cpp/clm/OSMetaClass/sizeof //test_ref/cpp/intfcm/OSMetaClass/sizeof //test_ref/cpp/intfm/OSMetaClass/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/OSMetaClass/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/OSMetaClass/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/OSMetaClass/init //test_ref/cpp/data/init //test_ref/cpp/clconst/OSMetaClass/init //test_ref/cpp/instm/OSMetaClass/init //test_ref/cpp/clm/OSMetaClass/init //test_ref/cpp/intfcm/OSMetaClass/init //test_ref/cpp/intfm/OSMetaClass/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/OSMetaClass/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/OSMetaClass/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSDefineMetaClassAndStructorsWithInit (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/tdef/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/tag/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/struct/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/intf/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/econst/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/data/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/data/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/clconst/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/instm/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/clm/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/intfcm/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/intfm/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/func/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/ftmplt/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/defn/OSDefineMetaClassAndStructorsWithInit //test_ref/cpp/macro/OSDefineMetaClassAndStructorsWithInit //test_ref/doc/com/intfm/OSMetaClass/OSDefineMetaClassAndStructorsWithInit //test_ref/doc/anysymbol/OSDefineMetaClassAndStructorsWithInit" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndStructorsWithInit</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/OSMetaClass/init //test_ref/cpp/data/init //test_ref/cpp/clconst/OSMetaClass/init //test_ref/cpp/instm/OSMetaClass/init //test_ref/cpp/clm/OSMetaClass/init //test_ref/cpp/intfcm/OSMetaClass/init //test_ref/cpp/intfm/OSMetaClass/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/OSMetaClass/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/OSMetaClass/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/OSMetaClass/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/OSMetaClass/sizeof //test_ref/cpp/instm/OSMetaClass/sizeof //test_ref/cpp/clm/OSMetaClass/sizeof //test_ref/cpp/intfcm/OSMetaClass/sizeof //test_ref/cpp/intfm/OSMetaClass/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/OSMetaClass/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/OSMetaClass/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/init //test_ref/cpp/tdef/init //test_ref/cpp/tag/init //test_ref/cpp/struct/init //test_ref/cpp/intf/init //test_ref/cpp/econst/init //test_ref/cpp/data/OSMetaClass/init //test_ref/cpp/data/init //test_ref/cpp/clconst/OSMetaClass/init //test_ref/cpp/instm/OSMetaClass/init //test_ref/cpp/clm/OSMetaClass/init //test_ref/cpp/intfcm/OSMetaClass/init //test_ref/cpp/intfm/OSMetaClass/init //test_ref/cpp/func/init //test_ref/cpp/ftmplt/OSMetaClass/init //test_ref/cpp/defn/init //test_ref/cpp/macro/init //test_ref/doc/com/intfm/OSMetaClass/init //test_ref/doc/anysymbol/init" machineGenerated="true" --><span class="preprocessor">init</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/new //test_ref/cpp/tdef/new //test_ref/cpp/tag/new //test_ref/cpp/struct/new //test_ref/cpp/intf/new //test_ref/cpp/econst/new //test_ref/cpp/data/OSMetaClass/new //test_ref/cpp/data/new //test_ref/cpp/clconst/OSMetaClass/new //test_ref/cpp/instm/OSMetaClass/new //test_ref/cpp/clm/OSMetaClass/new //test_ref/cpp/intfcm/OSMetaClass/new //test_ref/cpp/intfm/OSMetaClass/new //test_ref/cpp/func/new //test_ref/cpp/ftmplt/OSMetaClass/new //test_ref/cpp/defn/new //test_ref/cpp/macro/new //test_ref/doc/com/intfm/OSMetaClass/new //test_ref/doc/anysymbol/new" machineGenerated="true" --><span class="preprocessor">new</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">.</span><!-- a logicalPath="//test_ref/cpp/cl/instanceConstructed //test_ref/cpp/tdef/instanceConstructed //test_ref/cpp/tag/instanceConstructed //test_ref/cpp/struct/instanceConstructed //test_ref/cpp/intf/instanceConstructed //test_ref/cpp/econst/instanceConstructed //test_ref/cpp/data/OSMetaClass/instanceConstructed //test_ref/cpp/data/instanceConstructed //test_ref/cpp/clconst/OSMetaClass/instanceConstructed //test_ref/cpp/instm/OSMetaClass/instanceConstructed //test_ref/cpp/clm/OSMetaClass/instanceConstructed //test_ref/cpp/intfcm/OSMetaClass/instanceConstructed //test_ref/cpp/intfm/OSMetaClass/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/OSMetaClass/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/com/intfm/OSMetaClass/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="preprocessor">instanceConstructed</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSDefineMetaClass (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClass //test_ref/cpp/tdef/OSDefineMetaClass //test_ref/cpp/tag/OSDefineMetaClass //test_ref/cpp/struct/OSDefineMetaClass //test_ref/cpp/intf/OSDefineMetaClass //test_ref/cpp/econst/OSDefineMetaClass //test_ref/cpp/data/OSMetaClass/OSDefineMetaClass //test_ref/cpp/data/OSDefineMetaClass //test_ref/cpp/clconst/OSMetaClass/OSDefineMetaClass //test_ref/cpp/instm/OSMetaClass/OSDefineMetaClass //test_ref/cpp/clm/OSMetaClass/OSDefineMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSDefineMetaClass //test_ref/cpp/intfm/OSMetaClass/OSDefineMetaClass //test_ref/cpp/func/OSDefineMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSDefineMetaClass //test_ref/cpp/defn/OSDefineMetaClass //test_ref/cpp/macro/OSDefineMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSDefineMetaClass //test_ref/doc/anysymbol/OSDefineMetaClass" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClass</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/OSMetaClass/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/OSMetaClass/sizeof //test_ref/cpp/instm/OSMetaClass/sizeof //test_ref/cpp/clm/OSMetaClass/sizeof //test_ref/cpp/intfcm/OSMetaClass/sizeof //test_ref/cpp/intfm/OSMetaClass/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/OSMetaClass/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/OSMetaClass/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSDefineMetaClassAndStructors (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndStructors //test_ref/cpp/tdef/OSDefineMetaClassAndStructors //test_ref/cpp/tag/OSDefineMetaClassAndStructors //test_ref/cpp/struct/OSDefineMetaClassAndStructors //test_ref/cpp/intf/OSDefineMetaClassAndStructors //test_ref/cpp/econst/OSDefineMetaClassAndStructors //test_ref/cpp/data/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/cpp/data/OSDefineMetaClassAndStructors //test_ref/cpp/clconst/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/cpp/instm/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/cpp/clm/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/cpp/intfcm/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/cpp/intfm/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/cpp/func/OSDefineMetaClassAndStructors //test_ref/cpp/ftmplt/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/cpp/defn/OSDefineMetaClassAndStructors //test_ref/cpp/macro/OSDefineMetaClassAndStructors //test_ref/doc/com/intfm/OSMetaClass/OSDefineMetaClassAndStructors //test_ref/doc/anysymbol/OSDefineMetaClassAndStructors" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/OSMetaClass/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/OSMetaClass/sizeof //test_ref/cpp/instm/OSMetaClass/sizeof //test_ref/cpp/clm/OSMetaClass/sizeof //test_ref/cpp/intfcm/OSMetaClass/sizeof //test_ref/cpp/intfm/OSMetaClass/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/OSMetaClass/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/OSMetaClass/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/new //test_ref/cpp/tdef/new //test_ref/cpp/tag/new //test_ref/cpp/struct/new //test_ref/cpp/intf/new //test_ref/cpp/econst/new //test_ref/cpp/data/OSMetaClass/new //test_ref/cpp/data/new //test_ref/cpp/clconst/OSMetaClass/new //test_ref/cpp/instm/OSMetaClass/new //test_ref/cpp/clm/OSMetaClass/new //test_ref/cpp/intfcm/OSMetaClass/new //test_ref/cpp/intfm/OSMetaClass/new //test_ref/cpp/func/new //test_ref/cpp/ftmplt/OSMetaClass/new //test_ref/cpp/defn/new //test_ref/cpp/macro/new //test_ref/doc/com/intfm/OSMetaClass/new //test_ref/doc/anysymbol/new" machineGenerated="true" --><span class="preprocessor">new</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">.</span><!-- a logicalPath="//test_ref/cpp/cl/instanceConstructed //test_ref/cpp/tdef/instanceConstructed //test_ref/cpp/tag/instanceConstructed //test_ref/cpp/struct/instanceConstructed //test_ref/cpp/intf/instanceConstructed //test_ref/cpp/econst/instanceConstructed //test_ref/cpp/data/OSMetaClass/instanceConstructed //test_ref/cpp/data/instanceConstructed //test_ref/cpp/clconst/OSMetaClass/instanceConstructed //test_ref/cpp/instm/OSMetaClass/instanceConstructed //test_ref/cpp/clm/OSMetaClass/instanceConstructed //test_ref/cpp/intfcm/OSMetaClass/instanceConstructed //test_ref/cpp/intfm/OSMetaClass/instanceConstructed //test_ref/cpp/func/instanceConstructed //test_ref/cpp/ftmplt/OSMetaClass/instanceConstructed //test_ref/cpp/defn/instanceConstructed //test_ref/cpp/macro/instanceConstructed //test_ref/doc/com/intfm/OSMetaClass/instanceConstructed //test_ref/doc/anysymbol/instanceConstructed" machineGenerated="true" --><span class="preprocessor">instanceConstructed</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSDefineMetaClassAndAbstractStructors (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/tdef/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/tag/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/struct/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/intf/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/econst/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/data/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/data/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/clconst/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/instm/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/clm/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/intfcm/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/intfm/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/func/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/ftmplt/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/defn/OSDefineMetaClassAndAbstractStructors //test_ref/cpp/macro/OSDefineMetaClassAndAbstractStructors //test_ref/doc/com/intfm/OSMetaClass/OSDefineMetaClassAndAbstractStructors //test_ref/doc/anysymbol/OSDefineMetaClassAndAbstractStructors" machineGenerated="true" --><span class="preprocessor">OSDefineMetaClassAndAbstractStructors</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class global data </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/metaClass //test_ref/cpp/tdef/metaClass //test_ref/cpp/tag/metaClass //test_ref/cpp/struct/metaClass //test_ref/cpp/intf/metaClass //test_ref/cpp/econst/metaClass //test_ref/cpp/data/OSMetaClass/metaClass //test_ref/cpp/data/metaClass //test_ref/cpp/clconst/OSMetaClass/metaClass //test_ref/cpp/instm/OSMetaClass/metaClass //test_ref/cpp/clm/OSMetaClass/metaClass //test_ref/cpp/intfcm/OSMetaClass/metaClass //test_ref/cpp/intfm/OSMetaClass/metaClass //test_ref/cpp/func/metaClass //test_ref/cpp/ftmplt/OSMetaClass/metaClass //test_ref/cpp/defn/metaClass //test_ref/cpp/macro/metaClass //test_ref/doc/com/intfm/OSMetaClass/metaClass //test_ref/doc/anysymbol/metaClass" machineGenerated="true" --><span class="preprocessor">metaClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --> <span class="preprocessor">=</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">&amp;</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">Class member functions </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/superClassName //test_ref/cpp/tdef/superClassName //test_ref/cpp/tag/superClassName //test_ref/cpp/struct/superClassName //test_ref/cpp/intf/superClassName //test_ref/cpp/econst/superClassName //test_ref/cpp/data/OSMetaClass/superClassName //test_ref/cpp/data/superClassName //test_ref/cpp/clconst/OSMetaClass/superClassName //test_ref/cpp/instm/OSMetaClass/superClassName //test_ref/cpp/clm/OSMetaClass/superClassName //test_ref/cpp/intfcm/OSMetaClass/superClassName //test_ref/cpp/intfm/OSMetaClass/superClassName //test_ref/cpp/func/superClassName //test_ref/cpp/ftmplt/OSMetaClass/superClassName //test_ref/cpp/defn/superClassName //test_ref/cpp/macro/superClassName //test_ref/doc/com/intfm/OSMetaClass/superClassName //test_ref/doc/anysymbol/superClassName" machineGenerated="true" --><span class="preprocessor">superClassName</span><!-- /a --> <span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/meta //test_ref/cpp/tdef/meta //test_ref/cpp/tag/meta //test_ref/cpp/struct/meta //test_ref/cpp/intf/meta //test_ref/cpp/econst/meta //test_ref/cpp/data/OSMetaClass/meta //test_ref/cpp/data/meta //test_ref/cpp/clconst/OSMetaClass/meta //test_ref/cpp/instm/OSMetaClass/meta //test_ref/cpp/clm/OSMetaClass/meta //test_ref/cpp/intfcm/OSMetaClass/meta //test_ref/cpp/intfm/OSMetaClass/meta //test_ref/cpp/func/meta //test_ref/cpp/ftmplt/OSMetaClass/meta //test_ref/cpp/defn/meta //test_ref/cpp/macro/meta //test_ref/doc/com/intfm/OSMetaClass/meta //test_ref/doc/anysymbol/meta" machineGenerated="true" --><span class="preprocessor">meta</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><span class="preprocessor">~</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">{</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/getMetaClass //test_ref/cpp/tdef/getMetaClass //test_ref/cpp/tag/getMetaClass //test_ref/cpp/struct/getMetaClass //test_ref/cpp/intf/getMetaClass //test_ref/cpp/econst/getMetaClass //test_ref/cpp/data/OSMetaClass/getMetaClass //test_ref/cpp/data/getMetaClass //test_ref/cpp/clconst/OSMetaClass/getMetaClass //test_ref/cpp/instm/OSMetaClass/getMetaClass //test_ref/cpp/clm/OSMetaClass/getMetaClass //test_ref/cpp/intfcm/OSMetaClass/getMetaClass //test_ref/cpp/intfm/OSMetaClass/getMetaClass //test_ref/cpp/func/getMetaClass //test_ref/cpp/ftmplt/OSMetaClass/getMetaClass //test_ref/cpp/defn/getMetaClass //test_ref/cpp/macro/getMetaClass //test_ref/doc/com/intfm/OSMetaClass/getMetaClass //test_ref/doc/anysymbol/getMetaClass" machineGenerated="true" --><span class="preprocessor">getMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">&amp;</span><!-- a logicalPath="//test_ref/cpp/cl/gMetaClass //test_ref/cpp/tdef/gMetaClass //test_ref/cpp/tag/gMetaClass //test_ref/cpp/struct/gMetaClass //test_ref/cpp/intf/gMetaClass //test_ref/cpp/econst/gMetaClass //test_ref/cpp/data/OSMetaClass/gMetaClass //test_ref/cpp/data/gMetaClass //test_ref/cpp/clconst/OSMetaClass/gMetaClass //test_ref/cpp/instm/OSMetaClass/gMetaClass //test_ref/cpp/clm/OSMetaClass/gMetaClass //test_ref/cpp/intfcm/OSMetaClass/gMetaClass //test_ref/cpp/intfm/OSMetaClass/gMetaClass //test_ref/cpp/func/gMetaClass //test_ref/cpp/ftmplt/OSMetaClass/gMetaClass //test_ref/cpp/defn/gMetaClass //test_ref/cpp/macro/gMetaClass //test_ref/doc/com/intfm/OSMetaClass/gMetaClass //test_ref/doc/anysymbol/gMetaClass" machineGenerated="true" --><span class="preprocessor">gMetaClass</span><!-- /a --><span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <span class="comment"><span class="comment">/*</span> <span class="comment">The ::MetaClass constructor </span><span class="comment">*/</span></span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">:</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClass //test_ref/cpp/tdef/OSMetaClass //test_ref/cpp/tag/OSMetaClass //test_ref/cpp/struct/OSMetaClass //test_ref/cpp/intf/OSMetaClass //test_ref/cpp/econst/OSMetaClass //test_ref/cpp/data/OSMetaClass/OSMetaClass //test_ref/cpp/data/OSMetaClass //test_ref/cpp/clconst/OSMetaClass/OSMetaClass //test_ref/cpp/instm/OSMetaClass/OSMetaClass //test_ref/cpp/clm/OSMetaClass/OSMetaClass //test_ref/cpp/intfcm/OSMetaClass/OSMetaClass //test_ref/cpp/intfm/OSMetaClass/OSMetaClass //test_ref/cpp/func/OSMetaClass //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClass //test_ref/cpp/defn/OSMetaClass //test_ref/cpp/macro/OSMetaClass //test_ref/doc/com/intfm/OSMetaClass/OSMetaClass //test_ref/doc/anysymbol/OSMetaClass" machineGenerated="true" --><span class="preprocessor">OSMetaClass</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">"</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">"</span><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/superClass //test_ref/cpp/tdef/superClass //test_ref/cpp/tag/superClass //test_ref/cpp/struct/superClass //test_ref/cpp/intf/superClass //test_ref/cpp/econst/superClass //test_ref/cpp/data/OSMetaClass/superClass //test_ref/cpp/data/superClass //test_ref/cpp/clconst/OSMetaClass/superClass //test_ref/cpp/instm/OSMetaClass/superClass //test_ref/cpp/clm/OSMetaClass/superClass //test_ref/cpp/intfcm/OSMetaClass/superClass //test_ref/cpp/intfm/OSMetaClass/superClass //test_ref/cpp/func/superClass //test_ref/cpp/ftmplt/OSMetaClass/superClass //test_ref/cpp/defn/superClass //test_ref/cpp/macro/superClass //test_ref/doc/com/intfm/OSMetaClass/superClass //test_ref/doc/anysymbol/superClass" machineGenerated="true" --><span class="preprocessor">superClass</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/sizeof //test_ref/cpp/tdef/sizeof //test_ref/cpp/tag/sizeof //test_ref/cpp/struct/sizeof //test_ref/cpp/intf/sizeof //test_ref/cpp/econst/sizeof //test_ref/cpp/data/OSMetaClass/sizeof //test_ref/cpp/data/sizeof //test_ref/cpp/clconst/OSMetaClass/sizeof //test_ref/cpp/instm/OSMetaClass/sizeof //test_ref/cpp/clm/OSMetaClass/sizeof //test_ref/cpp/intfcm/OSMetaClass/sizeof //test_ref/cpp/intfm/OSMetaClass/sizeof //test_ref/cpp/func/sizeof //test_ref/cpp/ftmplt/OSMetaClass/sizeof //test_ref/cpp/defn/sizeof //test_ref/cpp/macro/sizeof //test_ref/doc/com/intfm/OSMetaClass/sizeof //test_ref/doc/anysymbol/sizeof" machineGenerated="true" --><span class="preprocessor">sizeof</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <span class="preprocessor">;</span> <span class="preprocessor">}</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/OSObject //test_ref/cpp/tdef/OSObject //test_ref/cpp/tag/OSObject //test_ref/cpp/struct/OSObject //test_ref/cpp/intf/OSObject //test_ref/cpp/econst/OSObject //test_ref/cpp/data/OSMetaClass/OSObject //test_ref/cpp/data/OSObject //test_ref/cpp/clconst/OSMetaClass/OSObject //test_ref/cpp/instm/OSMetaClass/OSObject //test_ref/cpp/clm/OSMetaClass/OSObject //test_ref/cpp/intfcm/OSMetaClass/OSObject //test_ref/cpp/intfm/OSMetaClass/OSObject //test_ref/cpp/func/OSObject //test_ref/cpp/ftmplt/OSMetaClass/OSObject //test_ref/cpp/defn/OSObject //test_ref/cpp/macro/OSObject //test_ref/doc/com/intfm/OSMetaClass/OSObject //test_ref/doc/anysymbol/OSObject" machineGenerated="true" --><span class="preprocessor">OSObject</span><!-- /a --> <span class="preprocessor">*</span> <!-- a logicalPath="//test_ref/cpp/cl/className //test_ref/cpp/tdef/className //test_ref/cpp/tag/className //test_ref/cpp/struct/className //test_ref/cpp/intf/className //test_ref/cpp/econst/className //test_ref/cpp/data/OSMetaClass/className //test_ref/cpp/data/className //test_ref/cpp/clconst/OSMetaClass/className //test_ref/cpp/instm/OSMetaClass/className //test_ref/cpp/clm/OSMetaClass/className //test_ref/cpp/intfcm/OSMetaClass/className //test_ref/cpp/intfm/OSMetaClass/className //test_ref/cpp/func/className //test_ref/cpp/ftmplt/OSMetaClass/className //test_ref/cpp/defn/className //test_ref/cpp/macro/className //test_ref/doc/com/intfm/OSMetaClass/className //test_ref/doc/anysymbol/className" machineGenerated="true" --><span class="preprocessor">className</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/MetaClass //test_ref/cpp/tdef/MetaClass //test_ref/cpp/tag/MetaClass //test_ref/cpp/struct/MetaClass //test_ref/cpp/intf/MetaClass //test_ref/cpp/econst/MetaClass //test_ref/cpp/data/OSMetaClass/MetaClass //test_ref/cpp/data/MetaClass //test_ref/cpp/clconst/OSMetaClass/MetaClass //test_ref/cpp/instm/OSMetaClass/MetaClass //test_ref/cpp/clm/OSMetaClass/MetaClass //test_ref/cpp/intfcm/OSMetaClass/MetaClass //test_ref/cpp/intfm/OSMetaClass/MetaClass //test_ref/cpp/func/MetaClass //test_ref/cpp/ftmplt/OSMetaClass/MetaClass //test_ref/cpp/defn/MetaClass //test_ref/cpp/macro/MetaClass //test_ref/doc/com/intfm/OSMetaClass/MetaClass //test_ref/doc/anysymbol/MetaClass" machineGenerated="true" --><span class="preprocessor">MetaClass</span><!-- /a --><span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/alloc //test_ref/cpp/tdef/alloc //test_ref/cpp/tag/alloc //test_ref/cpp/struct/alloc //test_ref/cpp/intf/alloc //test_ref/cpp/econst/alloc //test_ref/cpp/data/OSMetaClass/alloc //test_ref/cpp/data/alloc //test_ref/cpp/clconst/OSMetaClass/alloc //test_ref/cpp/instm/OSMetaClass/alloc //test_ref/cpp/clm/OSMetaClass/alloc //test_ref/cpp/intfcm/OSMetaClass/alloc //test_ref/cpp/intfm/OSMetaClass/alloc //test_ref/cpp/func/alloc //test_ref/cpp/ftmplt/OSMetaClass/alloc //test_ref/cpp/defn/alloc //test_ref/cpp/macro/alloc //test_ref/doc/com/intfm/OSMetaClass/alloc //test_ref/doc/anysymbol/alloc" machineGenerated="true" --><span class="preprocessor">alloc</span><!-- /a --><span class="preprocessor">(</span><span class="preprocessor">)</span> <!-- a logicalPath="//test_ref/cpp/cl/const //test_ref/cpp/tdef/const //test_ref/cpp/tag/const //test_ref/cpp/struct/const //test_ref/cpp/intf/const //test_ref/cpp/econst/const //test_ref/cpp/data/OSMetaClass/const //test_ref/cpp/data/const //test_ref/cpp/clconst/OSMetaClass/const //test_ref/cpp/instm/OSMetaClass/const //test_ref/cpp/clm/OSMetaClass/const //test_ref/cpp/intfcm/OSMetaClass/const //test_ref/cpp/intfm/OSMetaClass/const //test_ref/cpp/func/const //test_ref/cpp/ftmplt/OSMetaClass/const //test_ref/cpp/defn/const //test_ref/cpp/macro/const //test_ref/doc/com/intfm/OSMetaClass/const //test_ref/doc/anysymbol/const" machineGenerated="true" --><span class="preprocessor">const</span><!-- /a --> <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/return //test_ref/cpp/tdef/return //test_ref/cpp/tag/return //test_ref/cpp/struct/return //test_ref/cpp/intf/return //test_ref/cpp/econst/return //test_ref/cpp/data/OSMetaClass/return //test_ref/cpp/data/return //test_ref/cpp/clconst/OSMetaClass/return //test_ref/cpp/instm/OSMetaClass/return //test_ref/cpp/clm/OSMetaClass/return //test_ref/cpp/intfcm/OSMetaClass/return //test_ref/cpp/intfm/OSMetaClass/return //test_ref/cpp/func/return //test_ref/cpp/ftmplt/OSMetaClass/return //test_ref/cpp/defn/return //test_ref/cpp/macro/return //test_ref/doc/com/intfm/OSMetaClass/return //test_ref/doc/anysymbol/return" machineGenerated="true" --><span class="preprocessor">return</span><!-- /a --> <span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSMetaClassDeclareReservedUnused (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassDeclareReservedUnused //test_ref/cpp/tdef/OSMetaClassDeclareReservedUnused //test_ref/cpp/tag/OSMetaClassDeclareReservedUnused //test_ref/cpp/struct/OSMetaClassDeclareReservedUnused //test_ref/cpp/intf/OSMetaClassDeclareReservedUnused //test_ref/cpp/econst/OSMetaClassDeclareReservedUnused //test_ref/cpp/data/OSMetaClass/OSMetaClassDeclareReservedUnused //test_ref/cpp/data/OSMetaClassDeclareReservedUnused //test_ref/cpp/clconst/OSMetaClass/OSMetaClassDeclareReservedUnused //test_ref/cpp/instm/OSMetaClass/OSMetaClassDeclareReservedUnused //test_ref/cpp/clm/OSMetaClass/OSMetaClassDeclareReservedUnused //test_ref/cpp/intfcm/OSMetaClass/OSMetaClassDeclareReservedUnused //test_ref/cpp/intfm/OSMetaClass/OSMetaClassDeclareReservedUnused //test_ref/cpp/func/OSMetaClassDeclareReservedUnused //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClassDeclareReservedUnused //test_ref/cpp/defn/OSMetaClassDeclareReservedUnused //test_ref/cpp/macro/OSMetaClassDeclareReservedUnused //test_ref/doc/com/intfm/OSMetaClass/OSMetaClassDeclareReservedUnused //test_ref/doc/anysymbol/OSMetaClassDeclareReservedUnused" machineGenerated="true" --><span class="preprocessor">OSMetaClassDeclareReservedUnused</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/OSMetaClass/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/OSMetaClass/classname //test_ref/cpp/instm/OSMetaClass/classname //test_ref/cpp/clm/OSMetaClass/classname //test_ref/cpp/intfcm/OSMetaClass/classname //test_ref/cpp/intfm/OSMetaClass/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/OSMetaClass/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/OSMetaClass/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/OSMetaClass/index //test_ref/cpp/data/index //test_ref/cpp/clconst/OSMetaClass/index //test_ref/cpp/instm/OSMetaClass/index //test_ref/cpp/clm/OSMetaClass/index //test_ref/cpp/intfcm/OSMetaClass/index //test_ref/cpp/intfm/OSMetaClass/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/OSMetaClass/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/OSMetaClass/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">private</span><span class="preprocessor">:</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tdef/APPLE_KEXT_PAD_METHOD //test_ref/cpp/tag/APPLE_KEXT_PAD_METHOD //test_ref/cpp/struct/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intf/APPLE_KEXT_PAD_METHOD //test_ref/cpp/econst/APPLE_KEXT_PAD_METHOD //test_ref/cpp/data/OSMetaClass/APPLE_KEXT_PAD_METHOD //test_ref/cpp/data/APPLE_KEXT_PAD_METHOD //test_ref/cpp/clconst/OSMetaClass/APPLE_KEXT_PAD_METHOD //test_ref/cpp/instm/OSMetaClass/APPLE_KEXT_PAD_METHOD //test_ref/cpp/clm/OSMetaClass/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intfcm/OSMetaClass/APPLE_KEXT_PAD_METHOD //test_ref/cpp/intfm/OSMetaClass/APPLE_KEXT_PAD_METHOD //test_ref/cpp/func/APPLE_KEXT_PAD_METHOD //test_ref/cpp/ftmplt/OSMetaClass/APPLE_KEXT_PAD_METHOD //test_ref/cpp/defn/APPLE_KEXT_PAD_METHOD //test_ref/cpp/macro/APPLE_KEXT_PAD_METHOD //test_ref/doc/com/intfm/OSMetaClass/APPLE_KEXT_PAD_METHOD //test_ref/doc/anysymbol/APPLE_KEXT_PAD_METHOD" machineGenerated="true" --><span class="preprocessor">APPLE_KEXT_PAD_METHOD</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/cpp/econst/void //test_ref/cpp/data/OSMetaClass/void //test_ref/cpp/data/void //test_ref/cpp/clconst/OSMetaClass/void //test_ref/cpp/instm/OSMetaClass/void //test_ref/cpp/clm/OSMetaClass/void //test_ref/cpp/intfcm/OSMetaClass/void //test_ref/cpp/intfm/OSMetaClass/void //test_ref/cpp/func/void //test_ref/cpp/ftmplt/OSMetaClass/void //test_ref/cpp/defn/void //test_ref/cpp/macro/void //test_ref/doc/com/intfm/OSMetaClass/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="preprocessor">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/cpp/econst/_RESERVED //test_ref/cpp/data/OSMetaClass/_RESERVED //test_ref/cpp/data/_RESERVED //test_ref/cpp/clconst/OSMetaClass/_RESERVED //test_ref/cpp/instm/OSMetaClass/_RESERVED //test_ref/cpp/clm/OSMetaClass/_RESERVED //test_ref/cpp/intfcm/OSMetaClass/_RESERVED //test_ref/cpp/intfm/OSMetaClass/_RESERVED //test_ref/cpp/func/_RESERVED //test_ref/cpp/ftmplt/OSMetaClass/_RESERVED //test_ref/cpp/defn/_RESERVED //test_ref/cpp/macro/_RESERVED //test_ref/doc/com/intfm/OSMetaClass/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="preprocessor">_RESERVED</span><!-- /a --> <span class="preprocessor">#</span><span class="preprocessor">#</span> <!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/OSMetaClass/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/OSMetaClass/classname //test_ref/cpp/instm/OSMetaClass/classname //test_ref/cpp/clm/OSMetaClass/classname //test_ref/cpp/intfcm/OSMetaClass/classname //test_ref/cpp/intfm/OSMetaClass/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/OSMetaClass/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/OSMetaClass/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --> <span class="preprocessor">#</span><span class="preprocessor">#</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/OSMetaClass/index //test_ref/cpp/data/index //test_ref/cpp/clconst/OSMetaClass/index //test_ref/cpp/instm/OSMetaClass/index //test_ref/cpp/clm/OSMetaClass/index //test_ref/cpp/intfcm/OSMetaClass/index //test_ref/cpp/intfm/OSMetaClass/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/OSMetaClass/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/OSMetaClass/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> 
END OF OBJECT


OBJECT: OSMetaClassDeclareReservedUsed (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassDeclareReservedUsed //test_ref/cpp/tdef/OSMetaClassDeclareReservedUsed //test_ref/cpp/tag/OSMetaClassDeclareReservedUsed //test_ref/cpp/struct/OSMetaClassDeclareReservedUsed //test_ref/cpp/intf/OSMetaClassDeclareReservedUsed //test_ref/cpp/econst/OSMetaClassDeclareReservedUsed //test_ref/cpp/data/OSMetaClass/OSMetaClassDeclareReservedUsed //test_ref/cpp/data/OSMetaClassDeclareReservedUsed //test_ref/cpp/clconst/OSMetaClass/OSMetaClassDeclareReservedUsed //test_ref/cpp/instm/OSMetaClass/OSMetaClassDeclareReservedUsed //test_ref/cpp/clm/OSMetaClass/OSMetaClassDeclareReservedUsed //test_ref/cpp/intfcm/OSMetaClass/OSMetaClassDeclareReservedUsed //test_ref/cpp/intfm/OSMetaClass/OSMetaClassDeclareReservedUsed //test_ref/cpp/func/OSMetaClassDeclareReservedUsed //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClassDeclareReservedUsed //test_ref/cpp/defn/OSMetaClassDeclareReservedUsed //test_ref/cpp/macro/OSMetaClassDeclareReservedUsed //test_ref/doc/com/intfm/OSMetaClass/OSMetaClassDeclareReservedUsed //test_ref/doc/anysymbol/OSMetaClassDeclareReservedUsed" machineGenerated="true" --><span class="preprocessor">OSMetaClassDeclareReservedUsed</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/OSMetaClass/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/OSMetaClass/classname //test_ref/cpp/instm/OSMetaClass/classname //test_ref/cpp/clm/OSMetaClass/classname //test_ref/cpp/intfcm/OSMetaClass/classname //test_ref/cpp/intfm/OSMetaClass/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/OSMetaClass/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/OSMetaClass/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/OSMetaClass/index //test_ref/cpp/data/index //test_ref/cpp/clconst/OSMetaClass/index //test_ref/cpp/instm/OSMetaClass/index //test_ref/cpp/clm/OSMetaClass/index //test_ref/cpp/intfcm/OSMetaClass/index //test_ref/cpp/intfm/OSMetaClass/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/OSMetaClass/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/OSMetaClass/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --><span class="preprocessor">)</span> 
END OF OBJECT


OBJECT: OSMetaClassDefineReservedUnused (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassDefineReservedUnused //test_ref/cpp/tdef/OSMetaClassDefineReservedUnused //test_ref/cpp/tag/OSMetaClassDefineReservedUnused //test_ref/cpp/struct/OSMetaClassDefineReservedUnused //test_ref/cpp/intf/OSMetaClassDefineReservedUnused //test_ref/cpp/econst/OSMetaClassDefineReservedUnused //test_ref/cpp/data/OSMetaClass/OSMetaClassDefineReservedUnused //test_ref/cpp/data/OSMetaClassDefineReservedUnused //test_ref/cpp/clconst/OSMetaClass/OSMetaClassDefineReservedUnused //test_ref/cpp/instm/OSMetaClass/OSMetaClassDefineReservedUnused //test_ref/cpp/clm/OSMetaClass/OSMetaClassDefineReservedUnused //test_ref/cpp/intfcm/OSMetaClass/OSMetaClassDefineReservedUnused //test_ref/cpp/intfm/OSMetaClass/OSMetaClassDefineReservedUnused //test_ref/cpp/func/OSMetaClassDefineReservedUnused //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClassDefineReservedUnused //test_ref/cpp/defn/OSMetaClassDefineReservedUnused //test_ref/cpp/macro/OSMetaClassDefineReservedUnused //test_ref/doc/com/intfm/OSMetaClass/OSMetaClassDefineReservedUnused //test_ref/doc/anysymbol/OSMetaClassDefineReservedUnused" machineGenerated="true" --><span class="preprocessor">OSMetaClassDefineReservedUnused</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/OSMetaClass/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/OSMetaClass/classname //test_ref/cpp/instm/OSMetaClass/classname //test_ref/cpp/clm/OSMetaClass/classname //test_ref/cpp/intfcm/OSMetaClass/classname //test_ref/cpp/intfm/OSMetaClass/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/OSMetaClass/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/OSMetaClass/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/OSMetaClass/index //test_ref/cpp/data/index //test_ref/cpp/clconst/OSMetaClass/index //test_ref/cpp/instm/OSMetaClass/index //test_ref/cpp/clm/OSMetaClass/index //test_ref/cpp/intfcm/OSMetaClass/index //test_ref/cpp/intfm/OSMetaClass/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/OSMetaClass/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/OSMetaClass/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <!-- a logicalPath="//test_ref/cpp/cl/void //test_ref/cpp/tdef/void //test_ref/cpp/tag/void //test_ref/cpp/struct/void //test_ref/cpp/intf/void //test_ref/cpp/econst/void //test_ref/cpp/data/OSMetaClass/void //test_ref/cpp/data/void //test_ref/cpp/clconst/OSMetaClass/void //test_ref/cpp/instm/OSMetaClass/void //test_ref/cpp/clm/OSMetaClass/void //test_ref/cpp/intfcm/OSMetaClass/void //test_ref/cpp/intfm/OSMetaClass/void //test_ref/cpp/func/void //test_ref/cpp/ftmplt/OSMetaClass/void //test_ref/cpp/defn/void //test_ref/cpp/macro/void //test_ref/doc/com/intfm/OSMetaClass/void //test_ref/doc/anysymbol/void" machineGenerated="true" --><span class="preprocessor">void</span><!-- /a --> <!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/OSMetaClass/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/OSMetaClass/classname //test_ref/cpp/instm/OSMetaClass/classname //test_ref/cpp/clm/OSMetaClass/classname //test_ref/cpp/intfcm/OSMetaClass/classname //test_ref/cpp/intfm/OSMetaClass/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/OSMetaClass/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/OSMetaClass/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --> <span class="preprocessor">::</span><!-- a logicalPath="//test_ref/cpp/cl/_RESERVED //test_ref/cpp/tdef/_RESERVED //test_ref/cpp/tag/_RESERVED //test_ref/cpp/struct/_RESERVED //test_ref/cpp/intf/_RESERVED //test_ref/cpp/econst/_RESERVED //test_ref/cpp/data/OSMetaClass/_RESERVED //test_ref/cpp/data/_RESERVED //test_ref/cpp/clconst/OSMetaClass/_RESERVED //test_ref/cpp/instm/OSMetaClass/_RESERVED //test_ref/cpp/clm/OSMetaClass/_RESERVED //test_ref/cpp/intfcm/OSMetaClass/_RESERVED //test_ref/cpp/intfm/OSMetaClass/_RESERVED //test_ref/cpp/func/_RESERVED //test_ref/cpp/ftmplt/OSMetaClass/_RESERVED //test_ref/cpp/defn/_RESERVED //test_ref/cpp/macro/_RESERVED //test_ref/doc/com/intfm/OSMetaClass/_RESERVED //test_ref/doc/anysymbol/_RESERVED" machineGenerated="true" --><span class="preprocessor">_RESERVED</span><!-- /a --> <span class="preprocessor">#</span><span class="preprocessor">#</span> <!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/OSMetaClass/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/OSMetaClass/classname //test_ref/cpp/instm/OSMetaClass/classname //test_ref/cpp/clm/OSMetaClass/classname //test_ref/cpp/intfcm/OSMetaClass/classname //test_ref/cpp/intfm/OSMetaClass/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/OSMetaClass/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/OSMetaClass/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --> <span class="preprocessor">#</span><span class="preprocessor">#</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/OSMetaClass/index //test_ref/cpp/data/index //test_ref/cpp/clconst/OSMetaClass/index //test_ref/cpp/instm/OSMetaClass/index //test_ref/cpp/clm/OSMetaClass/index //test_ref/cpp/intfcm/OSMetaClass/index //test_ref/cpp/intfm/OSMetaClass/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/OSMetaClass/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/OSMetaClass/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --> <span class="preprocessor">(</span><span class="preprocessor">)</span> <span class="preprocessor">\</span> 
	    <span class="preprocessor">{</span> <!-- a logicalPath="//test_ref/cpp/cl/APPLE_KEXT_PAD_IMPL //test_ref/cpp/tdef/APPLE_KEXT_PAD_IMPL //test_ref/cpp/tag/APPLE_KEXT_PAD_IMPL //test_ref/cpp/struct/APPLE_KEXT_PAD_IMPL //test_ref/cpp/intf/APPLE_KEXT_PAD_IMPL //test_ref/cpp/econst/APPLE_KEXT_PAD_IMPL //test_ref/cpp/data/OSMetaClass/APPLE_KEXT_PAD_IMPL //test_ref/cpp/data/APPLE_KEXT_PAD_IMPL //test_ref/cpp/clconst/OSMetaClass/APPLE_KEXT_PAD_IMPL //test_ref/cpp/instm/OSMetaClass/APPLE_KEXT_PAD_IMPL //test_ref/cpp/clm/OSMetaClass/APPLE_KEXT_PAD_IMPL //test_ref/cpp/intfcm/OSMetaClass/APPLE_KEXT_PAD_IMPL //test_ref/cpp/intfm/OSMetaClass/APPLE_KEXT_PAD_IMPL //test_ref/cpp/func/APPLE_KEXT_PAD_IMPL //test_ref/cpp/ftmplt/OSMetaClass/APPLE_KEXT_PAD_IMPL //test_ref/cpp/defn/APPLE_KEXT_PAD_IMPL //test_ref/cpp/macro/APPLE_KEXT_PAD_IMPL //test_ref/doc/com/intfm/OSMetaClass/APPLE_KEXT_PAD_IMPL //test_ref/doc/anysymbol/APPLE_KEXT_PAD_IMPL" machineGenerated="true" --><span class="preprocessor">APPLE_KEXT_PAD_IMPL</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/OSMetaClass/index //test_ref/cpp/data/index //test_ref/cpp/clconst/OSMetaClass/index //test_ref/cpp/instm/OSMetaClass/index //test_ref/cpp/clm/OSMetaClass/index //test_ref/cpp/intfcm/OSMetaClass/index //test_ref/cpp/intfm/OSMetaClass/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/OSMetaClass/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/OSMetaClass/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --><span class="preprocessor">)</span><span class="preprocessor">;</span> <span class="preprocessor">}</span> 
END OF OBJECT


OBJECT: OSMetaClassDefineReservedUsed (HeaderDoc::PDefine)
	<span class="preprocessor">#define</span> <!-- a logicalPath="//test_ref/cpp/cl/OSMetaClassDefineReservedUsed //test_ref/cpp/tdef/OSMetaClassDefineReservedUsed //test_ref/cpp/tag/OSMetaClassDefineReservedUsed //test_ref/cpp/struct/OSMetaClassDefineReservedUsed //test_ref/cpp/intf/OSMetaClassDefineReservedUsed //test_ref/cpp/econst/OSMetaClassDefineReservedUsed //test_ref/cpp/data/OSMetaClass/OSMetaClassDefineReservedUsed //test_ref/cpp/data/OSMetaClassDefineReservedUsed //test_ref/cpp/clconst/OSMetaClass/OSMetaClassDefineReservedUsed //test_ref/cpp/instm/OSMetaClass/OSMetaClassDefineReservedUsed //test_ref/cpp/clm/OSMetaClass/OSMetaClassDefineReservedUsed //test_ref/cpp/intfcm/OSMetaClass/OSMetaClassDefineReservedUsed //test_ref/cpp/intfm/OSMetaClass/OSMetaClassDefineReservedUsed //test_ref/cpp/func/OSMetaClassDefineReservedUsed //test_ref/cpp/ftmplt/OSMetaClass/OSMetaClassDefineReservedUsed //test_ref/cpp/defn/OSMetaClassDefineReservedUsed //test_ref/cpp/macro/OSMetaClassDefineReservedUsed //test_ref/doc/com/intfm/OSMetaClass/OSMetaClassDefineReservedUsed //test_ref/doc/anysymbol/OSMetaClassDefineReservedUsed" machineGenerated="true" --><span class="preprocessor">OSMetaClassDefineReservedUsed</span><!-- /a --><span class="preprocessor">(</span><!-- a logicalPath="//test_ref/cpp/cl/classname //test_ref/cpp/tdef/classname //test_ref/cpp/tag/classname //test_ref/cpp/struct/classname //test_ref/cpp/intf/classname //test_ref/cpp/econst/classname //test_ref/cpp/data/OSMetaClass/classname //test_ref/cpp/data/classname //test_ref/cpp/clconst/OSMetaClass/classname //test_ref/cpp/instm/OSMetaClass/classname //test_ref/cpp/clm/OSMetaClass/classname //test_ref/cpp/intfcm/OSMetaClass/classname //test_ref/cpp/intfm/OSMetaClass/classname //test_ref/cpp/func/classname //test_ref/cpp/ftmplt/OSMetaClass/classname //test_ref/cpp/defn/classname //test_ref/cpp/macro/classname //test_ref/doc/com/intfm/OSMetaClass/classname //test_ref/doc/anysymbol/classname" machineGenerated="true" --><span class="preprocessor">classname</span><!-- /a --><span class="preprocessor">,</span> <!-- a logicalPath="//test_ref/cpp/cl/index //test_ref/cpp/tdef/index //test_ref/cpp/tag/index //test_ref/cpp/struct/index //test_ref/cpp/intf/index //test_ref/cpp/econst/index //test_ref/cpp/data/OSMetaClass/index //test_ref/cpp/data/index //test_ref/cpp/clconst/OSMetaClass/index //test_ref/cpp/instm/OSMetaClass/index //test_ref/cpp/clm/OSMetaClass/index //test_ref/cpp/intfcm/OSMetaClass/index //test_ref/cpp/intfm/OSMetaClass/index //test_ref/cpp/func/index //test_ref/cpp/ftmplt/OSMetaClass/index //test_ref/cpp/defn/index //test_ref/cpp/macro/index //test_ref/doc/com/intfm/OSMetaClass/index //test_ref/doc/anysymbol/index" machineGenerated="true" --><span class="preprocessor">index</span><!-- /a --><span class="preprocessor">)</span> 
END OF OBJECT



_$89|/Users/dg/headerdoc-techpubs/Modules/HeaderDoc//../../testsuite/parser_tests/class_5.test$1|C$7|class 5$1|C$6|parser